How do I evaluate something like 3070^2-3069^2?

This looks pretty daunting, but the key to this sort of a problem, which has come up a couple of times in previous PAT tests, is to recognise that this expression is actually the difference of two squares. It can be generalised to the problem of evaluating:

x2-y2

which has as its solution:

x2-y2 = (x+y)(x-y)

so in this case:

30702-30692 = (3070+3069)(3070-3069)=(6139)(1)=6139

SC

Related PAT University answers

All answers ▸

How do I approximate an irrational square root without using a calculator?


Five point charges, each of positive charge q, are arranged to form the corners of a uniform pentagon. A point charge Q is placed at the pentagon's centre. One of the corner charges is removed. What force does the centre charge experience?


a boat is in a still lake with its anchor up in the boat, it then drops its anchor till it hits the bottom of the lake. Is the water level highest a) when the anchor is in the water. b) when the anchor is in the boat. c) it makes no difference.


What is the sum of the series 2/3 − 2/9 + 2/27 − ....? (PAT Q1 2013)