Question:
Find the smallest positive integer $n$ such that $$99^n+100^n<101^n$$
My idea: This is equivalent to $$\left(\dfrac{99}{101}\right)^n+\left(\dfrac{100}{101}\right)^n<1$$ so $$\left(1-\dfrac{2}{101}\right)^n+\left(1-\dfrac{1}{101}\right)^n<1$$
Use this: $$(1+x)^n\ge 1+nx,x>-1,n\ge 1$$ so $$1-\dfrac{2}{101}n+1-\dfrac{1}{101}n<1\Longrightarrow n>\dfrac{101}{3}=33.666$$
But I found $n=34$ is not sufficient. I used a computer to find $n\ge 49$.
I want to see how to find it by hand. Thank you.