Problem Description:
The task is to sort the given words into three categories based on their tense:
Past,
Present, and
Future. The words are provided in a table, and the goal is to categorize them correctly.
Words Provided:
- jog
- will teach
- hopped
- pushed
- close
- will study
- turn
- opened
- painted
- will talk
- slide
- will write
Solution Approach:
1.
Understand the Tenses:
-
Past Tense: Verbs that describe actions that have already happened. These verbs typically end in "-ed" or are irregular forms (e.g., "hopped," "pushed").
-
Present Tense: Verbs that describe actions happening now or general truths. These verbs often end in "-s" for third-person singular subjects or are base forms for other subjects (e.g., "jog," "close").
-
Future Tense: Verbs that describe actions that will happen in the future. These verbs typically include "will" followed by the base form of the verb (e.g., "will teach," "will study").
2.
Categorize Each Word:
-
Past Tense: Identify verbs that indicate past actions.
-
Present Tense: Identify verbs that indicate current actions or general truths.
-
Future Tense: Identify verbs that indicate future actions.
3.
Sort the Words:
-
Past Tense: hopped, pushed, opened, painted
-
Present Tense: jog, close, turn, slide
-
Future Tense: will teach, will study, will talk, will write
Final Answer:
```
Tense Sort
Past Present Future
------------------ ------------------ ------------------
hopped jog will teach
pushed close will study
opened turn will talk
painted slide will write
```
Explanation:
-
Past Tense: All these verbs describe completed actions. For example, "hopped" and "pushed" are past forms of "hop" and "push," respectively.
-
Present Tense: These verbs describe ongoing actions or general truths. For example, "jog" and "close" are present forms.
-
Future Tense: These verbs describe actions that will happen in the future. They all start with "will" followed by the base form of the verb.
This categorization ensures that each word is placed in the correct tense category based on its grammatical form.
Final Answer Boxed:
$$
\boxed{
\begin{array}{|c|c|c|}
\hline
\textbf{Past} & \textbf{Present} & \textbf{Future} \\
\hline
\text{hopped} & \text{jog} & \text{will teach} \\
\text{pushed} & \text{close} & \text{will study} \\
\text{opened} & \text{turn} & \text{will talk} \\
\text{painted} & \text{slide} & \text{will write} \\
\hline
\end{array}
}
$$
Parent Tip: Review the logic above to help your child master the concept of past present and future tense verbs worksheet for 2nd grade.