Question 1
Find the missing element (?) in this matrix pattern:
2 4 6
4 8 12
6 12 ?
What should replace the '?'?
Pattern: multiplication table pattern
Step 1: First row: multiples of 2 (2×1, 2×2, 2×3)
Step 2: Second row: multiples of 4 (4×1, 4×2, 4×3)
Step 3: Third row: multiples of 6 (6×1, 6×2, 6×3)
Step 4: Missing cell is 6×3 = 18
Pattern: Matrix[i][j] = (row_value) × (j+1)
Answer: 18
Step 1: First row: multiples of 2 (2×1, 2×2, 2×3)
Step 2: Second row: multiples of 4 (4×1, 4×2, 4×3)
Step 3: Third row: multiples of 6 (6×1, 6×2, 6×3)
Step 4: Missing cell is 6×3 = 18
Pattern: Matrix[i][j] = (row_value) × (j+1)
Answer: 18