I decided to try proof by induction without any help = ) so if someone could check it out, pretty sure it's unfinished or, well i'm not sure. Also, if possible, could you take a logical guess for how many marks i'd get /10 for what I've done atm :
Consider the function five: N > N define recursively as follows: 1) base case: five(0) = 10 2) recursive case: five(x) = five(x-1)+5 for any x>0
prove using induction on the natural numbers that the following equality is true for all natural umbers n e(subset) N: five(n)=(n+2)*5
My working out
Check if it holds for n1 five(1)=five(1-0)+5 = 10 + 5 = 15
Assume K=N
five(k) = five(k-1)+5 proving this holds
five(k+1)=five(k+1-1)+5
At this point I got a bit lost, but soldiered on :D
five(1) = five(1)+5 five(2) = five(2)+5
that's as far as I got, any help much appreciated