Math,
Your recursive formula means that tn-1 is the fare charged for n-1, or one less than n, kilometers.
Given t1 = $8, we can find t2: t2 = t1 + 0.75 = 8+.75 = $8.75. Likewise, t3 = 8.75 + .75 = $9.50.
Our pattern will look like 8, 8.75, 9.5,... adding .75 each time.
If we start with 8 for our initial value, we'll get the formula .75n+8, which gives us t1=8.75, but that's too much!
t1 = 8. Start by using
tn = .75(n-1) +8. Then the 0.75 isn't added until the n=2.
Distribute the .75 to get a simpler, explicit formula: tn = .75(n-1) +8 => tn = .75n - .75 +8 =>
tn = .75n +7.25.
Try some values we got before to make sure the equation works, then plug in 15 to get the dost for 15 km:
t15 = .75(15) + 7.25 = $18.50
This series is arithmetic because it has a constant rate of change (slope). Each additional kilometer increases the price by .75.
I hope this helps and answers all your questions!
Have fun mathing, and let me know if you need any more help.
LizZ