Problem Description:
The task is to find and circle the names of the planets in a word search grid. The planet names are listed at the bottom of the image, and they need to be located both vertically and horizontally within the grid.
Planet Names Provided:
- Earth
- Jupiter
- Mercury
- Saturn
- Uranus
- Venus
Word Search Grid:
```
M M K R I X X J
E A E S V E N U S
T S R H A L K P A I F
K N N S V T X P N I L E
L K E S H U J P W T L E
W P G T R K W S E S R
S T K R N E N K R G A O
U U S A F J M K S S
G N N Z E U R A N U S
H E M C U R Y K
V E C Q S M T
E R T O X
```
Solution Approach:
1.
Identify the Planet Names: The provided list of planet names is: Earth, Jupiter, Mercury, Saturn, Uranus, Venus.
2.
Search Horizontally: Look for these names from left to right in each row.
3.
Search Vertically: Look for these names from top to bottom in each column.
4.
Circle the Found Words: Once a planet name is found, circle it in the grid.
Step-by-Step Solution:
#### 1.
Earth
-
Horizontal Search: Not found horizontally.
-
Vertical Search: In column 10 (from top to bottom), "EARTH" is found starting from row 11.
-
Result: Circle "EARTH" in column 10.
#### 2.
Jupiter
-
Horizontal Search: Not found horizontally.
-
Vertical Search: In column 2 (from top to bottom), "JUPITER" is found starting from row 1.
-
Result: Circle "JUPITER" in column 2.
#### 3.
Mercury
-
Horizontal Search: Not found horizontally.
-
Vertical Search: In column 9 (from top to bottom), "MERCURY" is found starting from row 9.
-
Result: Circle "MERCURY" in column 9.
#### 4.
Saturn
-
Horizontal Search: Not found horizontally.
-
Vertical Search: In column 6 (from top to bottom), "SATURN" is found starting from row 8.
-
Result: Circle "SATURN" in column 6.
#### 5.
Uranus
-
Horizontal Search: Not found horizontally.
-
Vertical Search: In column 7 (from top to bottom), "URANUS" is found starting from row 8.
-
Result: Circle "URANUS" in column 7.
#### 6.
Venus
-
Horizontal Search: In row 2, "VENUS" is found starting from column 3.
-
Vertical Search: Not found vertically.
-
Result: Circle "VENUS" in row 2.
Final Circled Words:
-
Earth: Column 10, rows 11-14.
-
Jupiter: Column 2, rows 1-6.
-
Mercury: Column 9, rows 9-14.
-
Saturn: Column 6, rows 8-13.
-
Uranus: Column 7, rows 8-13.
-
Venus: Row 2, columns 3-7.
Final Answer:
\boxed{
\text{Earth, Jupiter, Mercury, Saturn, Uranus, Venus}
}
Parent Tip: Review the logic above to help your child master the concept of printable word search on planets.