Problem Description:
The task is to fill in the missing numbers in a table based on the given rules:
1.
10 More: Add 10 to the given number.
2.
10 Less: Subtract 10 from the given number.
3.
1 More: Add 1 to the given number.
4.
1 Less: Subtract 1 from the given number.
Table Structure:
The table has the following columns:
-
Given Number: The starting number.
-
10 More: The result of adding 10 to the given number.
-
10 Less: The result of subtracting 10 from the given number.
-
1 More: The result of adding 1 to the given number.
-
1 Less: The result of subtracting 1 from the given number.
Given Numbers:
- 38
- 62
- 50
- 18
- 44
- 79
Solution Approach:
For each given number, we will perform the following calculations:
1.
10 More: \( \text{Given Number} + 10 \)
2.
10 Less: \( \text{Given Number} - 10 \)
3.
1 More: \( \text{Given Number} + 1 \)
4.
1 Less: \( \text{Given Number} - 1 \)
Step-by-Step Calculations:
#### 1. For the number
38:
-
10 More: \( 38 + 10 = 48 \)
-
10 Less: \( 38 - 10 = 28 \)
-
1 More: \( 38 + 1 = 39 \)
-
1 Less: \( 38 - 1 = 37 \)
#### 2. For the number
62:
-
10 More: \( 62 + 10 = 72 \)
-
10 Less: \( 62 - 10 = 52 \)
-
1 More: \( 62 + 1 = 63 \)
-
1 Less: \( 62 - 1 = 61 \)
#### 3. For the number
50:
-
10 More: \( 50 + 10 = 60 \)
-
10 Less: \( 50 - 10 = 40 \)
-
1 More: \( 50 + 1 = 51 \)
-
1 Less: \( 50 - 1 = 49 \)
#### 4. For the number
18:
-
10 More: \( 18 + 10 = 28 \)
-
10 Less: \( 18 - 10 = 8 \)
-
1 More: \( 18 + 1 = 19 \)
-
1 Less: \( 18 - 1 = 17 \)
#### 5. For the number
44:
-
10 More: \( 44 + 10 = 54 \)
-
10 Less: \( 44 - 10 = 34 \)
-
1 More: \( 44 + 1 = 45 \)
-
1 Less: \( 44 - 1 = 43 \)
#### 6. For the number
79:
-
10 More: \( 79 + 10 = 89 \)
-
10 Less: \( 79 - 10 = 69 \)
-
1 More: \( 79 + 1 = 80 \)
-
1 Less: \( 79 - 1 = 78 \)
Filled Table:
| Given Number | 10 More | 10 Less | 1 More | 1 Less |
|--------------|----------|----------|--------|--------|
| 38 | 48 | 28 | 39 | 37 |
| 62 | 72 | 52 | 63 | 61 |
| 50 | 60 | 40 | 51 | 49 |
| 18 | 28 | 8 | 19 | 17 |
| 44 | 54 | 34 | 45 | 43 |
| 79 | 89 | 69 | 80 | 78 |
Final Answer:
\[
\boxed{
\begin{array}{|c|c|c|c|c|}
\hline
\text{Given Number} & \text{10 More} & \text{10 Less} & \text{1 More} & \text{1 Less} \\
\hline
38 & 48 & 28 & 39 & 37 \\
\hline
62 & 72 & 52 & 63 & 61 \\
\hline
50 & 60 & 40 & 51 & 49 \\
\hline
18 & 28 & 8 & 19 & 17 \\
\hline
44 & 54 & 34 & 45 & 43 \\
\hline
79 & 89 & 69 & 80 & 78 \\
\hline
\end{array}
}
\]
Parent Tip: Review the logic above to help your child master the concept of 10 more 10 less worksheets.