Show that, for all natural numbers m and n, we have 2Fm+n = FmLn + FnLm, where F0, F1, ... are the Fibonacci numbers and L0, L1, ... are the Lucas numbers.
The recurrence relation for Fibonacci sequence is: Fn = Fn-1 + Fn-2 where F0 = 0 and F1 = 1 The recurrence relation for Lucas sequence is: Ln = Ln-1 + Ln-2 where L0 = 2 and L1 = 1
Induction on $m$ and $n$ at the same time. Need two starting points (two stepping points for each recurrence).