The problem is:
Use induction and the recursive formula to prove that: $$F(1) + F(3) + \cdots + F(2n-1) = F(2n)$$
For the base case I let $n=1$ which gave $$F(1) = F(2(1))$$
$$1=1$$
Which is true.
Then I assumed true for $n-1$ and subbed that into the original given function:
$$F(1) + F(3) + \cdots + F(2(n-1)-1) = F(2(n-1))$$
$$F(1) + F(3) + \cdots + F(2n -3) = F(2(n-1))$$
Then, I added $F(n-1)$ to both sides of the original function to try and get that to equal $F(2(n-1))$ which would prove what I was trying to prove. (Or so I thought) This gives me:
$$F(1) + F(3) + \cdots + F(2(n-1)) + F(n-1) = F(2n) + F(n-1)$$
Which I have expanded out a number of ways, none of which give me the answer I am looking for.
I'm not 100% sure that adding $F(n-1)$ to both sides is the correct 3rd step, I used the same method from a different example proof but that didn't involve Fib numbers. Any help would be appreciated.