Limit of triginometric functions

In summary: Could you be a little more explicit please?I'm sorry, I thought you were asking me to explain the general method I use for computing limits. I didn't realize you were talking about the specific problem.Computing limits is complicated. I can either demonstrate one way to compute the limit, or I can try to explain a general method for computing limits.I'm sorry, I thought you were asking me to explain the general method I use for computing limits. I didn't realize you were talking about the specific problemYes, I was asking for an explanation of your general method for computing limits. But I do see now that you are talking about the general method, and not about any specific
  • #1
Emethyst
118
0

Homework Statement


Find the limits of the following functions:
a) lim x->0 x^2/(1-cos^2x)
b) lim x->0 sin3x/sin5x
c) lim x->pi/4 (tanx-1)/(x-(pi/4))



Homework Equations


All those special triginometric simplifying rules and the fundamental triginometric limit


The Attempt at a Solution


For a) I simplified the denominator to sin^2x, but after that I got lost. The answer is 1, but I don't think x/sinx would equal 1 like sinx/x does. For b) I tried using the variable substitution method by making u=3x, but then I encounter problems with the denominator again as I do not have any idea how to simplify sin5(3/u). For c) it is much the same thing, beyond replacing tanx with sinx/cosx I do not know how to proceed with the simplification. Any help would be greatly appreciated, thanks.
 
Physics news on Phys.org
  • #2
The limit of x/sin(x) does equal 1, it's the same as 1/(sin(x)/x). For the other two, if you want to prove them using just trig identities use identities to express sin(3x) and sin(5x) in terms of sin(x) and cos(x). I.e. use the addition formula. For the last one it may help to change to the variable u=x-pi/4 and use the tangent addition formula.
 
  • #3
Thanks for the help with a) and c) Dick, I got those after some tinkering. My last is problem is with b) still; how could you express this in cos and sin if the question is set up--for lack of a better expression--in a double angle-esq style situation? I remember you said use the addition formula, but I cannot see how to express this question with the use of the addition formula.
 
  • #4
Emethyst said:
My last is problem is with b) still

There is no need to use any kind of trig substitution on (b). If you know l'Hôpital's rule, then you could use that, but there still is another way. Note that
[tex]\underbrace{\lim_{x\to 0} \frac{\sin x}{x}= 1 }_{\text{eqn 1}} \implies \lim_{x\to 0} \frac{1}{\frac{\sin x}{x}} = \underbrace{\lim_{x\to 0} \frac{x}{\sin x} = 1 }_{\text{eqn 2}} [/tex]

First multiply your expression inside the limit by x/x to get:
[tex]\frac{\sin 3x}{\sin 5x} \cdot \frac{x}{x} = \frac{\sin 3x}{x} \cdot \frac{x}{\sin 5x}[/tex]
Now multiply these expressions by 3/3 and 5/5 to get:
[tex]\frac{3\sin 3x}{3x} \cdot \frac{5x}{5\sin 5x}[/tex]

Can you finish this off now? If [itex]x\to 0[/itex], what do 3x and 5x approach? Is there a substitution you can make to make the limits of these expressions look like equations (1) and (2)?
 
  • #5
n!kofeyn said:
There is no need to use any kind of trig substitution on (b). If you know l'Hôpital's rule, then you could use that, but there still is another way

I haven't got that far in calculus yet to use l'Hopital's rule unfortunately :-p

I'll have to try this in the morning, seeming as its 1am where I am located, but from what I can see the substitution needs to be made with a variable, as any number inputted for x will prevent the Fundamental Triginometric Limit from being used.
 
  • #6
Emethyst said:
but from what I can see the substitution needs to be made with a variable, as any number inputted for x will prevent the Fundamental Triginometric Limit from being used.

Yes, that's right. When you make substitutions, you usually replace a variable (along with some other stuff) with another variable to make your calculations easier. Just notice the similarities between the expressions I ended up with, compared to the equations I tagged (1) and (2). Once you make the substitution (which is just a one-step process to make this precise), you will basically be done.
 
  • #7
The main approach to computing limits is simplification. e.g. you want to compute the limit

[tex]\lim_{x \rightarrow 0} \frac{x}{\sin x}[/tex]

As x approaches 0, you know that sin x approaches 0. So the first thing you do is to try using 0 as an approximation to sin x:

[tex]\frac{x}{\sin x} \approx \frac{x}{0}[/tex]

Whoops! We can't divide by zero, and this limit approaches the indeterminate form 0/0 anyways. So that approximation was a bust.

So, we move on -- we know that x is an even better approximation to sin x. And if we try it:

[tex]\frac{x}{\sin x} \approx \frac{x}{x} \rightarrow 1[/tex]

things work out! So now we have a plan of attack.



Now that we know something to try, our goal is to extract the part we understand (x/x). This is typically done by algebraic manipulation. Typical things to try are to find the expression E that makes these equations true:

[tex]\frac{x}{\sin x} = \frac{x}{x} + {\color{red} E_1}[/tex]

[tex]\frac{x}{\sin x} = \frac{x}{x + {\color{red} E_2}}[/tex]

[tex]\frac{x}{\sin x} = \frac{x}{x \cdot {\color{red} E_3}}[/tex]


And now, we try attacking the limit again. Because we've extracted a "simpler" part, we can usually use algebraic manipulations and the limit laws to help us. e.g. the three above methods would lead to (if the individual limits do indeed exist):

[tex]\lim_{x \rightarrow 0} \frac{x}{\sin x} = \lim_{x \rightarrow 0} \frac{x}{x} + \lim_{x \rightarrow 0} {\color{red} E_1} = 1 + \lim_{x \rightarrow 0} {\color{red} E_1} [/tex]

[tex]\lim_{x \rightarrow 0} \frac{x}{\sin x} = \lim_{x \rightarrow 0} \frac{1}{1 + \frac{{\color{red} E_2}}{x}} = \frac{1}{1 + \lim_{x \rightarrow 0} \frac{{\color{red} E_2}}{x}}[/tex]

[tex]\lim_{x \rightarrow 0}\frac{x}{\sin x} = \lim_{x \rightarrow 0}\frac{1}{{\color{red} E_3}}[/tex]

If we can figure out anyone of these expressions, we have successfully computed the original limit.
 
  • #8
Hurkyl said:
The main approach to computing limits is simplification.
How is this a simplification?
Hurkyl said:
If we can figure out anyone of these expressions, we have successfully computed the original limit.

What limit do you think we're trying to compute? The original poster already stated that we are given that [tex]\lim_{x\to 0} \frac{\sin x}{x} = 1[/tex]

The limit [tex]\lim_{x\to 0} \frac{x}{\sin x} = 1[/tex] follows directly from this and what I had already posted.

The solution I posted earlier is a direct and quick solution requiring very little algebraic manipulation and the use of the basic limit laws, and Emethyst (the original poster) already said he would tackle this in the morning. I think this will only serve to confuse the original poster, as I myself am unsure of what you are addressing.
 
  • #9
Ok I have tried it, and the only problem I am having is just finding the proper value for the variable (sorry for coming back again for help, this solution just keeps eluding me no matter what I do :-p )

What I have tried is setting the variable (in this case u) equal to 3x, thus making x=u/3. Unfortunately this got me nowhere, along with trying u=5x. n!kofeyn is also right here as this question is from first year calculus and is at the start of the trig section for calculus, so I know it will not involve any complex solutions. My only remaining problem is finding the correct variable for this limit.
 
  • #10
Did you try n!kofyen's excellent advice? Do you know what the limit sin(3x)/(3x) is as x->0 is, for example? I was thinking about using multiple angle formula's for sin(3x) and sin(5x), which works, but n!kofyen's suggestion is much simpler.
 
  • #11
Emethyst said:
Ok I have tried it, and the only problem I am having is just finding the proper value for the variable (sorry for coming back again for help, this solution just keeps eluding me no matter what I do :-p )

What I have tried is setting the variable (in this case u) equal to 3x, thus making x=u/3. Unfortunately this got me nowhere, along with trying u=5x. n!kofeyn is also right here as this question is from first year calculus and is at the start of the trig section for calculus, so I know it will not involve any complex solutions. My only remaining problem is finding the correct variable for this limit.

Okay, no problem. We can just do it then. Giving any more hints won't help and probably will confuse you, plus my hint may have consued you anyways. You did the right thing by letting u=3x, but I'll just continue the solution from my earlier post.

n!kofeyn said:
There is no need to use any kind of trig substitution on (b). If you know l'Hôpital's rule, then you could use that, but there still is another way. Note that
[tex]\underbrace{\lim_{x\to 0} \frac{\sin x}{x}= 1 }_{\text{eqn 1}} \implies \lim_{x\to 0} \frac{1}{\frac{\sin x}{x}} = \underbrace{\lim_{x\to 0} \frac{x}{\sin x} = 1 }_{\text{eqn 2}} [/tex]

First multiply your expression inside the limit by x/x to get:
[tex]\frac{\sin 3x}{\sin 5x} \cdot \frac{x}{x} = \frac{\sin 3x}{x} \cdot \frac{x}{\sin 5x}[/tex]
Now multiply these expressions by 3/3 and 5/5 to get:
[tex]\frac{3\sin 3x}{3x} \cdot \frac{5x}{5\sin 5x}[/tex]

Now let [itex]s=3x[/itex] and [itex]t=5x[/itex]. Then [itex]x\to 0 \Leftrightarrow 3x\to0 \Leftrightarrow s\to 0[/itex] and [itex]x\to0 \Leftrightarrow 5x\to 0\Leftrightarrow t\to 0[/itex]. (The symbol [itex]\Leftrightarrow[/itex] means equivalent to or if and only if.) Then
[tex]
\begin{align*}
\lim_{x\to 0} \frac{\sin 3x}{\sin 5x} &= \lim_{x\to 0} \frac{3\sin 3x}{3x} \cdot \frac{5x}{5\sin 5x} \\
&= \lim_{x\to 0} \frac{3\sin 3x}{3x} \cdot \lim_{x\to 0} \frac{5x}{5\sin 5x} \\
&= \lim_{s\to 0} \frac{3\sin s}{s} \cdot \lim_{t\to 0} \frac{t}{5\sin t} \\
&= 3 \cdot \frac{1}{5} \\
&= \frac{3}{5}
\end{align*}
[/tex]
We can break the limit into a product of limits because each of the separate limits exist.

Hopefully this helps!
 

FAQ: Limit of triginometric functions

What is the definition of a limit of a trigonometric function?

The limit of a trigonometric function is the value that a function approaches as the input values get closer and closer to a specific value. It is denoted by the symbol "lim" and is used to describe the behavior of a function near a particular point.

How do you calculate the limit of a trigonometric function?

To calculate the limit of a trigonometric function, you can either use the properties of limits or evaluate the function at the specific value. For example, to find the limit of sin(x) as x approaches 0, you can use the fact that sin(0) = 0 or you can use the fact that the limit of sin(x)/x as x approaches 0 is equal to 1.

What is the difference between a one-sided limit and a two-sided limit?

A one-sided limit only considers the behavior of a function as the input values approach the specific value from one direction, either from the left or from the right. On the other hand, a two-sided limit takes into account the behavior of the function from both directions, approaching the specific value from both the left and the right.

What are the common properties of limits of trigonometric functions?

Some common properties of limits of trigonometric functions include the fact that the limit of a sum or difference of two trigonometric functions is equal to the sum or difference of their individual limits, and the limit of a product of two trigonometric functions is equal to the product of their individual limits. Additionally, the limit of a constant times a trigonometric function is equal to the constant times the limit of the trigonometric function.

How can limits of trigonometric functions be used in real-life applications?

Limits of trigonometric functions are used in various fields such as physics, engineering, and economics to model and analyze real-life phenomena. For example, in physics, limits of trigonometric functions are used to describe the motion of objects, while in economics, they are used to study the behavior of market demand and supply. In engineering, limits of trigonometric functions are used to design and analyze structures such as bridges and buildings.

Similar threads

Replies
5
Views
1K
Replies
3
Views
2K
Replies
19
Views
2K
Replies
11
Views
928
Replies
4
Views
1K
Replies
12
Views
1K
Replies
6
Views
1K
Replies
13
Views
3K
Back
Top