Question 816667
let a<sub>n</sub> be an arithmetic sequence. if a<sub>4</sub>=27 and a<sub>9</sub>=67, what is a<sub>1</sub>?
<pre>
a<sub>n</sub> = a<sub>1</sub> + (n-1)d

a<sub>4</sub> = a<sub>1</sub> + (4-1)d
27 = a<sub>1</sub> + 3d

a<sub>9</sub> = a<sub>1</sub> + (9-1)d
67 = a<sub>1</sub> + 8d

So we solve this system of equations:

27 = a<sub>1</sub> + 3d
67 = a<sub>1</sub> + 8d

To eliminate d, multiply the first 
equation through by -8, and multiply
the second equation through by 3

-216 = -8a<sub>1</sub> - 24d
 201 =  3a<sub>1</sub> + 24d
-------------------
 -15 = -5a<sub>1</sub>
   3 = a<sub>1</sub>

--------------------

To check we find d by substituting
3 for a<sub>1</sub> in

27 = a<sub>1</sub> + 3d
27 = 3 + 3d
24 = 3d
 8 = d

So the sequence is found by starting with 
3 and adding 8 each time to get the next
term:

3, 11, 19, <font color="red">27</font>, 35, 43, 51, 59, <font color="red">67</font>

Edwin</pre>