Tuesday, February 28, 2017

algebra precalculus - How to prove an Inequality



I'm beginner with proofs and I got the follow exercise:





Prove the inequality $$(a + b)\Bigl(\frac{1}{a} + \frac{4}{b}\Bigr) \ge 9$$ when $a > 0$ and $b > 0$. Determine when the equality occurs.




I'm lost, could you guys give me a tip from where to start, or maybe show a good resource for beginners in proofs ?



Thanks in advance.


Answer



The first thing to do is simplify the expression on the lefthand side of the inequality.




$$(a + b)\left(\frac{1}{a} + \frac{4}{b}\right)=\frac{(a+b)(4a+b)}{ab}=\frac{4a^2+5ab+b^2}{ab}=\frac{4a}b+5+\frac{b}a\;.$$



Now notice that the resulting expression contains both $\frac{a}b$ and $\frac{b}a$; this is an indication that it might simplify matters to introduce a new quantity, $x=\frac{a}b$, and rewrite the inequality as $$4x+5+\frac1x\ge 9\;,$$ or $$4x+\frac1x\ge 4\;.\tag{0}$$



The natural thing to do now is to multiply through by $x$ to get rid of the fraction, but be careful: since this is an inequality, the sign of $x$ matters. If $x\ge 0$ we get $4x^2+1\ge 4x$, or $4x^2-4x+1\ge 0$, but if $x<0$ we get $4x^2+1\le 4x$, or $4x^2-4x+1\le 0$. In either case, though, we recognize that $4x^2-4x+1=(2x-1)^2$, so either $$x\ge 0\quad\text{and}\quad(2x-1)^2\ge 0\tag{1}$$ or $$x<0\quad\text{and}\quad(2x-1)^2\le 0\;.\tag{2}$$



Now $(2)$ is impossible: $(2x-1)^2\le 0$ if and only if $(2x-1)^2=0$, in which case $2x=1$, $x=\frac12$, and $x\not<0$. Thus, any solution must come from $(1)$: $x>0$, and $(2x-1)^2\ge 0$. If $2x\ne 1$, then $2x-1\ne0$, so $(2x-1)^2>0$, and we have a solution. If $2x=1$, then $x=\frac12>0$ and $(2x-1)^2=0\ge0$, and again we have a solution. In short, every positive $x$ is a solution, no negative $x$ is a solution, and $x$ can’t be $0$. (Why not?) We could actually have discovered this just by looking more closely at $(0)$, but one won’t always have so nice an inequality as that.



What does this mean in terms of $a$ and $b$? Recall that $x=\dfrac{a}b$; thus, $x>0$ if and only if $\dfrac{a}b>0$, which is true if and only if $a$ and $b$ have the same algebraic sign: both are positive, or both are negative. Since we were told that both are positive, we know that the inequality holds for all $a$ and $b$ in the given domain.




Finally, we have equality in $(0)$ if and only if $4x^4-4x+1=0$, or $(2x-1)^2=0$, i.e., if and only if $x=\frac12$. Since $x=\frac{a}b$, that’s equivalent to $\frac{a}b=\frac12$, or $b=2a$.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...