Saturday, August 4, 2018

calculus - How to show that this limit is identical to..



Suppose we have expressions
f1=x(y1)x(2y1)y
and
f2=xw/y+(1x)w/(1y)+48(xw/y+(1x)w/(1y)+48)21/4(1+xw/y).
Moreover, we can assume w>0, x,y[0,1] and xy. As you can probably guess, f2 is a solution to a quadratic equation.




In numerical calculations I almost accidentally discovered that
lim
which is not at all obvious from the expressions. Is that true - what's the limit of f_2 and how to calculate it?


Answer



Your expression is of the form



a-\sqrt{a^2-b}



which, when a is "much" larger than b, is approximately b/(2 a). In your case,




a=\frac18 \left (\left [ \frac{x}{y} + \frac{1-x}{1-y}\right] w + 4\right )
b = \frac14 \left ( 1+ \frac{x}{y} w\right )



Now, as w \to \infty:



\frac{b}{2 a} = \frac{ 1+ \frac{x}{y} w}{\left [ \frac{x}{y} + \frac{1-x}{1-y}\right] w + 4} \sim \frac{\frac{x}{y}}{\frac{1-x}{1-y}+\frac{x}{y}}



which, when simplified, produces the sought-after expression.



What I didn't answer is, when is this true, and it should be valid for all x,y \in [0,1] because a remains much larger than b as w \to \infty.




ADDENDUM



I made the assertion



a-\sqrt{a^2-b} \sim \frac{b}{2 a}



This comes from the expression for the Taylor series for the function



\sqrt{1+z} = 1+\frac12 z + O\left(z^2\right)




where the O term is an error term for small z. Then



a-\sqrt{a^2-b} = a-a \sqrt{1-\frac{b}{a^2}} \sim a - a \left (1 - \frac{b}{2 a^2}\right ) = \frac{b}{2 a}


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...