The key concept here is Difference of Squares — and once you see the pattern, this question becomes very fast.
Step 1: Set up the consecutive integers.
Since v, w, x, y, z are consecutive, let v = n. Then w = n+1, x = n+2, y = n+3, z = n+4.
Step 2: Use the Difference of Squares identity.
w2 - v2 = (w + v)(w - v)
Since consecutive integers differ by 1, (w - v) = 1, so:
w2 - v2 = w + v = 43
Step 3: Find the actual values.
w + v = 43, and w = v + 1, so:
(v + 1) + v = 43 → 2v + 1 = 43 → v = 21
Therefore: v = 21, w = 22, x = 23, y = 24, z = 25
Step 4: Apply the same identity to y2 and z2.
z2 - y2 = (z + y)(z - y) = (25 + 24)(1) = 49
Answer: (C) 49
The elegant shortcut: You don't need to solve for v at all. Notice the pattern:
- w2 - v2 = v + w = 43
- x2 - w2 = w + x = 45
- y2 - x2 = x + y = 47
- z2 - y2 = y + z = 49
Each consecutive pair's difference of squares is 2 more than the previous pair's. The question is asking 4 steps ahead of where we started, so the answer is 43 + 4(2) - 2 = ... actually just count: 43, 45, 47, 49. Done in 10 seconds.
Common trap: Many students try to solve for all five values first, then compute z2 - y2 directly by squaring. That works, but it's slower and more error-prone. The pattern shortcut is what separates a 700+ approach from a 600-level approach on this question type.