PDA

View Full Version : Hello


vaastav
Dec31-03, 10:51 AM
How can we find the first five terms of sequence given below?

a1=7; an=an-1 – 4, n>=2

Muzza
Dec31-03, 10:58 AM
By pluggin in numbers...

a_1 = 7

a_n = a_(n - 1) - 4, n >= 2 (you really need to use parantheses here).

To find a_2, let n = 2. Then we have:

a_2 = a_(2 - 1) - 4 = a_1 - 4 = 7 - 4 = 3.

You use the same technique to find the rest of the numbers.

vaastav
Dec31-03, 11:02 AM
Thanx

enigma
Dec31-03, 06:02 PM
Originally posted by Muzza
(you really need to use parantheses here).



Or Latex (http://www.physicsforums.com/showthread.php?s=&threadid=8997)

Muzza
Dec31-03, 06:25 PM
Yeah, I guess that works too. ;)