0

I have a final coming up soon and was needing help in understanding a faster method in calculating something like this:

$$\lim_{x \to 0^+} \frac{\sin \sqrt{x}}{\sqrt{x}} $$

I know the answer is 1, but the only method I currently know is to calculate this with the lowest reasonable x value I can input. The thing is if I use 0 the value is undefined, but if I use 1 the value is too far from 0 to correctly approximate, so then I'm left with values smaller than 1 to plug into and attempting to put fractions in a rooted denominator will become a time constraint on the test. This method takes too long and I was wanting to know if there is another method to find the limit.

1 Answers1

2

As mentioned in my comment, we want to force the limit we all learned:

$$\lim_{x \to 0} \frac{\sin x}{x} = 1.$$

To do this, we let $x = y^2$ in the proposed limit. Then as $x \to 0^+,$ we have $y \to 0.$ (You should check this.) Then

$$\lim_{x \to 0^+} \frac{\sin \sqrt{x}}{\sqrt{x}} = \lim_{y \to 0} \frac{\sin y}{y}$$

and we're done.