2

I recently typed a short proof for a homework problem regarding Fibonacci numbers. For some background, I am a physicist and not a mathematician so I was hoping to share my proof with some mathematicians for two reasons. I am new to typing formal proofs, so I am more interested in knowing if the wording/syntax is properly done. I'd also like to know if the formatting is acceptable (I typed this in Latex, something else I am new to doing). To be clear, I'm not looking for help on the problem itself since this is homework. I just want to know if this proof would be acceptable in the mathematics community for my own personal benefit.

Also, just assume you know this problem is about Fibonacci numbers, even though I didn't state it explicitly in the proof.

Picture of my Proof

  • your proof is correct. but i'd prefer the (imo) much nicer formulation "induction step". Overall it is a solid proof though. When you write proofs more often you will get more convenient with the wording and formulations. – Pink Panther Jan 14 '18 at 22:43
  • Thank you for the feedback. Yeah, I'm not sure how I missed the fact that I actually skipped the induction step! Probably just me being new to formal proof writing. But thank you again. – oliver_grayson Jan 14 '18 at 23:27

2 Answers2

1

The proof is technically valid and well-written; however, you never use the inductive hypothesis in your inductive step. Thus invoking induction was unnecessary.

BallBoy
  • 14,472
  • Yeah, that was foolish of me, I hadn't even realized it! Thank you as well for pointing it out. I now know what I need to actually make this a proof by induction. – oliver_grayson Jan 14 '18 at 23:27
0

Your proof is more of a direct proof rather than a proof by induction. You didn't really utilize the induction hypothesis in the actual induction step. Nowhere did you use the fact that $F_{k-2}+F_{k+2}=3F_k$. That's not to say that your proof is incorrect, it just doesn't necessarily do it in the way requested. This brings up the question of the semantics of "what makes a proof specifically an induction proof or not an induction proof?" I for one am in the camp of an induction proof specifically makes use of an implication of the form $P(n)\implies P(n+1)$.

As for how to organize an induction proof, this post has some good advice.

As for how to use the induction hypothesis in your actual problem, try to rewrite $F_{k-1}+F_{k+3}$ as sums of fibonacci numbers which are four apart with slightly smaller indices.

(You might find it convenient to have your induction hypothesis instead be the statement $P(k)\equiv(F_{k-3}+F_{k+1}=3F_{k-1})\wedge(F_{k-2}+F_{k+2}=3F_k)$ which would require an additional base case, or you could phrase this instead as strong induction)

$F_{k-1}+F_{k+3}=F_{k-3}+F_{k-2}+F_{k+1}+F_{k+2}$ by Fibonacci recurrence

$~$

$=(F_{k-3}+F_{k+1})+(F_{k-2}+F_{k+2})$ by rearranging

$~$

$3F_{k-1}+3F_k$ by induction hypothesis...

$~$

$3(F_{k-1}+F_k)=3F_{k+1}$ by factoring and Fibonacci recurrence.

JMoravitz
  • 79,518
  • Ahh, I see what you mean. Being new to proof writing I see now how I didn't actually use the induction hypothesis/step as you said. Pretty foolish of me. But thank you for the help/clarification. That really helps! – oliver_grayson Jan 14 '18 at 23:25