Hi my boss asked me to resolve this equation:
Prove (1 + x)^n + (1 - x)^n < 2^n by using Binomial Theorem -1 < x < 1 and n >= 2.
Hi my boss asked me to resolve this equation:
Prove (1 + x)^n + (1 - x)^n < 2^n by using Binomial Theorem -1 < x < 1 and n >= 2.
On
This question seem to be about mathematics, not about Mathematica. However, Mathematica can help us to deal with this problem.
It can proof the binomial expansion of $(1-x)^n+(1+x)^n$:
Sum[2 Binomial[n, k] x^k, {k, 0, n, 2}]
(1 - x)^n + (1 + x)^n
We know that $x^k \le 1$ for $-1\le x \le 1$. Therefore $(1-x)^n+(1+x)^n$ is less than or equal to
Sum[2 Binomial[n, k], {k, 0, n, 2}]
2^n
Thereby $(1-x)^n+(1+x)^n \le 2^n$ for $-1\le x \le 1$.
Mathematica can help us to avoid simple mistakes in mathematical calculations.
Expressing the left-hand side in binomial form :-
It is evident that the result does not exceed 2^n.