To determine the 50th shape in the pattern "square, triangle, circle, oval," we first note that the pattern consists of 4 shapes:
- Square
- Triangle
- Circle
- Oval
This sequence repeats every 4 shapes. To find out the position of the 50th shape in the repeating sequence, we can use modulo arithmetic:
- Calculate \( 50 \mod 4 \).
- \( 50 \div 4 = 12 \) remainder \( 2 \).
Since \( 50 \mod 4 = 2 \), this means the 50th shape corresponds to the 2nd shape in the repeating sequence.
From our pattern:
- Square (1st)
- Triangle (2nd)
- Circle (3rd)
- Oval (4th)
The 2nd shape is triangle.
Therefore, the 50th shape is triangle.