Find the values of the real constants $c$ and $d$ such that
$$\lim_{x\to 0}\frac{\sqrt{c+dx}-\sqrt{3}}{x}=\sqrt{3}$$
I really have no clue how to even get started.
|
I don't know a way Mathematica is going to solve that directly for you, but it can help you understand what happens. First, let's ask it what the general expression for the limit is:
The answer is:
So, this limit is an infinity, and has the same sign as $\sqrt c-\sqrt 3$. If you want the limit to be finite, you have only one special case you can try: what happens if $\sqrt c-\sqrt 3=0$, i.e. if $c=3$?
The results is:
which is finite, so all is well. Now, you need this to be equal to $\sqrt 3$, which you can sure solve yourself, but just to be thorough, let's ask Mathematica to do it:
Conclusion: no silver bullet, but definitely a way to help you understand this equation if your math skills fail you! |
|||
|
|
Method I Since we have a fraction going to a non-vanishing value given its denominator is going to
We could use
Method II Another way to tackle the problem is to expand the expression in a power series around
Now you can find limits of every term separately :
The only problem comes from the second term, however we can get rid of it by assuming a priori its value by setting
|
|||
|
|
|
$$\lim_{x\to 0}\frac{\sqrt{c+dx}-\sqrt{3}}{x}=\sqrt{3}$$ Since the denominator goes to $0$, the limit cannot exist unless the numerator also goes to $0$. The numerator is $\sqrt{c+dx}-\sqrt{3}$, so that would have to go to $0$ as $x$ goes to $0$. But it goes to $\sqrt{c+d\cdot0} - \sqrt{3}$. Hence $c+d\cdot0$ must be $3$. That tells you $c$ is $3$, and you've got $$\lim_{x\to 0}\frac{\sqrt{3+dx}-\sqrt{3}}{x}=\sqrt{3}.$$ Now rationalize the numerator: $$ \frac{\sqrt{3+dx}-\sqrt{3}}{x} = \frac{\left(\sqrt{3+dx}-\sqrt{3}\right)\left(\sqrt{3+dx}+\sqrt{3}\right)}{x\left(\sqrt{3+dx}+\sqrt{3}\right)}= \frac{dx}{x\left(\sqrt{3+dx}+\sqrt{3}\right)}. $$ The $x$s cancel and we get $$ \frac{d}{\sqrt{3+dx}+\sqrt{3}}. $$ The limit of that as $x\to0$ is $d/(2\sqrt{3})$. So you want $d/(2\sqrt{3}) = \sqrt{3}$. Multiply both sides by $2\sqrt{3}$ and you get $d=6$. |
|||
|
|
Series[Sqrt[c + d x], {x, 0, 1}]/x; how to make this finite and equal toSqrt[3]in the limit ? – b.gatessucks Sep 13 '12 at 9:31Mathematicahardly tackles this problem. So I find this a valuableMathematicaquestion and upvoted it. – Artes Sep 13 '12 at 12:37