Mathematical Induction Problem: Finding a Formula for a Sequence of Numbers

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
heavysoul93
Messages
2
Reaction score
0

Homework Statement


Okay, so I'm going to be completely honest, I am really bad at math, and I have been struggling the past couple of weeks in my Quantitative Reasoning class. I am so lost. I don't know if it's my teacher's teaching method or what, but nothing is clicking for me at the moment, and none of the tutors at my school have even heard of any of this stuff.

I just need help getting this problem started. It says:
Find a formula for the following sequence of numbers:
1,5,12,22,35,51,70,92,117,145,176,210,247,287,330,...

Then it asks to prove the formula is correct by mathematical induction. I think I can do the second part, but I have no clue as to how to come up with a formula.

I appreciate any help. Thanks!
 
on Phys.org
I think you're adding 4,7,10,13,16,19,...
So [itex]a_n=a_{n-1}+4+(n-2)*3[/itex] for n>1
 
susskind_leon said:
I think you're adding 4,7,10,13,16,19,...
So [itex]a_n=a_{n-1}+4+(n-2)*3[/itex] for n>1



i think [tex]a_n = a_{n-1} + 3(n-1) + 1[/tex] makes for a nicer recursion formula. (the main problem with your formula is that requires integers for a1, a minor point, but important in programming perhaps).

either way, it appears a logical definition for [itex]a_0[/itex] is 0.
 
susskind_leon said:
I think you're adding 4,7,10,13,16,19,...
So [itex]a_n=a_{n-1}+4+(n-2)*3[/itex] for n>1


In fact, the "second difference" (7- 4, 10- 7, 13- 3, 16- 13, 19- 16) is the constant 3 so all succeeding differences are 0. That tells you that [itex]a_n[/itex] is a quadratic function of n. Let [itex]a_n= An^2+ Bn+ C[/itex]. Then [itex]a_0= C= 1[/itex], [itex]a_1= A+ B+ 1= 5[/itex], and [itex]4A+ 2B+ 1= 12[/itex] Solve [itex]4A+ 2B= 11[/itex] and [itex]A+ B= 4[/itex] for A and B and see if that formula doesn't give the other numbers in the seqeunce.
 
Thanks for the help guys. I'll see what I can do now with the rest of the problem. If I get stuck I'll post back here. Thanks again.