Let $n\in N$, $k\in Z$, $o\leq k \leq n$. Define $C^{n}_k$ as the coefficient of $x^{n-k}y^k$ in the expansion of $(x+y)^n$
$$(x+y)^n= \sum^{n}_{k=0} C^{n}_k x^{n-k}y^k$$
Use induction to prove that if $k<n$ then $C^{n}_k + C^{n}_{k+1}=C^{n+1}_{k+1}$ hint: $(x+y)^{n+1}=(x+y)^n(x+y)$
Approach
I am not so sure how to use induction here but here is what I think:
$(x+y)^1=x+y=\sum^{1}_{k}x^{1-k}y^{k} = C^1_0 x + C^1_1 y$ so $C^1_0=1$ $C^1_1=1$
left = $C^1_0+C^1_1=2$
$(x+y)^2=x^2+2xy+y^2=\sum^2_{0} C^2_k x^{2-k}y^k= C^{2}_0 x^2+ C^2_1xy+ C^2_2 y^2$ so $C^2_1=2$
Right=$C^2_1$=2
so left=right
at the way end I ended up with something like this
$(x+y)^n(x+y)=C^n_0 x^{n+1}+C^n_n y^{k+1}+ \sum^{n-1}_0 C^n_{k+1} x^{n-k}y^{k+1} + \sum^{n-1}_0 C^n_{k} x^{n-k} y^{k+1}$ As you realize I can apply my inductive hypothesis there, but I don't know how it would take to a degree of n+2
Your inductive step, and in fact your whole inductive hypothesis, is wrong. Don't worry too much about it, induction causes a lot of confusion when you first encounter it. You just have to take it slowly and not jump over too many steps. Always second-guess everything you do, and make sure you have an explanation for every step.
Remember, induction is a process you use to prove a statement about all positive integers, i.e. a statement that says "For all $n\in\mathbb N$, the statement $P(n)$ is true".
You prove the statement in two parts:
So, in your case, you need to ask yourself:
Please, first answer these questions (preferably either in comments or as an edit to your question), then I can help you further.
OK, so you know what $P(n)$ is. Now, you need to do the two steps of proving by induction. First of all, you need to prove $P(1)$. So, these are the questions you need to answer:
When you answer the first question, the second question should be easy to answer, since you know that $(x+y)^1=1\cdot x+1\cdot y$, and you can read out what $C_0^1$ and $C_1^1$ are.
Now, the hard part. You need to assume that $P(n)$ is true, and then prove that $P(n+1)$ is true.
To do that, first write down $P(n)$ and $P(n+1)$.