Math Help Forum

Math Help Forum Feed Site Feed

Go Back   Math Help Forum > University Math Help > Calculus
Reply
 
Thread Tools Display Modes
  #1  
Old September 27th, 2009, 01:20 PM
Newbie
 
Join Date: Sep 2009
Posts: 2
Country:
Thanks: 2
Thanked 0 Times in 0 Posts
oObutterfly-chaserOo is on a distinguished road
Question Trig Limits

I'm taking my first Calculus course this year and having a lot of trouble, especially with limits with trig functions in them. I haven't used trig for almost two years now and way out of practice. Unfortunately, I had to work when my teacher had scheduled a help session last week. I was just wondering if anyone here could send a little help my way. I do not expect anyone to do all my work for me. Here is one of the twenty problems i am having trouble with:

Lim x-> 0 (x/tan(x))

Thanks in advance to anyone who can explain this to me.
Reply With Quote
Advertisement
 
  #2  
Old September 27th, 2009, 01:32 PM
DeMath's Avatar
Senior Member
 
Join Date: Nov 2008
Location: Moscow
Posts: 352
Country:
Thanks: 17
Thanked 195 Times in 158 Posts
DeMath has a spectacular aura aboutDeMath has a spectacular aura aboutDeMath has a spectacular aura about
Default

Quote:
Originally Posted by oObutterfly-chaserOo View Post
I'm taking my first Calculus course this year and having a lot of trouble, especially with limits with trig functions in them. I haven't used trig for almost two years now and way out of practice. Unfortunately, I had to work when my teacher had scheduled a help session last week. I was just wondering if anyone here could send a little help my way. I do not expect anyone to do all my work for me. Here is one of the twenty problems i am having trouble with:

Lim x-> 0 (x/tan(x))

Thanks in advance to anyone who can explain this to me.
Hint:

\mathop {\lim }\limits_{x \to 0} \frac{x}
{{\tan x}} = \mathop {\lim }\limits_{x \to 0} \frac{{x\cos x}}
{{\sin x}} = \left( {\mathop {\lim }\limits_{x \to 0} \cos x} \right) \cdot {\left( {\mathop {\lim }\limits_{x \to 0} \frac{{\sin x}}
{x}} \right)^{ - 1}}
Reply With Quote
The following users thank DeMath for this useful post:
Donate to MHF
  #3  
Old September 27th, 2009, 03:18 PM
Newbie
 
Join Date: Sep 2009
Posts: 12
Country:
Thanks: 0
Thanked 0 Times in 0 Posts
bgonzal8 is on a distinguished road
Default

Quote:
Originally Posted by oObutterfly-chaserOo View Post
I'm taking my first Calculus course this year and having a lot of trouble, especially with limits with trig functions in them. I haven't used trig for almost two years now and way out of practice. Unfortunately, I had to work when my teacher had scheduled a help session last week. I was just wondering if anyone here could send a little help my way. I do not expect anyone to do all my work for me. Here is one of the twenty problems i am having trouble with:

Lim x-> 0 (x/tan(x))

Thanks in advance to anyone who can explain this to me.
Hello there. The most important things to realize when dealing with limits are the discontinuities in the function (that should always be your first step in finding the limit), tangent has vertical asymptotes, although this Lim will not deal with the functions asymptote. But remember that your graphing calculator is very handy when dealing with limits.

There are a few methods that you can consecutively try to find the limit.First just try substituting the number x is approacing for the variable in the function ... in this case x-> 0 so Lim x--> (0/tan0) this leads to 0/0 which is no good. Next you can try factoring, but when that won't work here. Another method would be conjugation - where the function is rational with a square root. Okay so for Trig functions you must brush up on your trig Identities. It is really helpful to buy Calculus for Dummies, it got me through calc 1 and now I'm in calc 2 and it's still well worth the 20 $, I would have paid a good 60 $ for the amount its helped me. Anyway tanx = sinx/cosx

Lim x-->0 (x/tanx) = x/sinx/cosx = xcosx/sinx : cosx/sinx = cotx (another trig identity)..... so x(cotx)=0cot0=0; Limx-->0 (x/tanx)=0
Reply With Quote
  #4  
Old October 9th, 2009, 05:38 PM
Newbie
 
Join Date: Oct 2009
Location: New York City
Posts: 8
Country:
Thanks: 0
Thanked 0 Times in 0 Posts
mbacarella is on a distinguished road
Default

I'm only a first year Calc student but I think the previous post is wrong.

This is how I solved it:

\lim_{x\to0} \frac{x}{tan(x)}= \lim_{x\to0} \frac{x}{\frac{sin(x)}{cos(x)}}= \lim_{x\to0} \frac{x \times cos(x)}{sin(x)}= \lim_{x\to0} \frac{1 \times cos(x)}{1}= \lim_{x\to0} \frac{1 \times 1}{1}= 1

Recall:
tan(x) = \frac{sin(x)}{cos(x)}
and also
\lim_{x\to0} \frac{sin (x)}{x} = 1 = \lim_{x\to0} \frac{x}{sin(x)}

Numerical analysis supports:
Quote:
$ python
Python 2.4.3 (#1, Jul 27 2009, 17:56:30)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from math import tan
>>> f = lambda x: x/(tan(x))
>>> f(0.1)
0.99666444232592377
>>> f(0.01)
0.99996666644444221
>>> f(0.001)
0.99999966666664442
>>> f(-0.001)
0.99999966666664442
>>> f(-0.01)
0.99996666644444221
>>> f(-0.1)
0.99666444232592377
Reply With Quote
  #5  
Old October 9th, 2009, 10:45 PM
mr fantastic's Avatar
Flow Master

 
Join Date: Dec 2007
Location: Zeitgeist
Posts: 12,237
Country:
Thanks: 2,574
Thanked 4,757 Times in 4,190 Posts
mr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond reputemr fantastic has a reputation beyond repute
Default

Quote:
Originally Posted by bgonzal8 View Post
[snip]
Lim x-->0 (x/tanx) = x/sinx/cosx = xcosx/sinx : cosx/sinx = cotx (another trig identity)..... so x(cotx)=0cot0=0; Limx-->0 (x/tanx)=0
Sorry but your calculation is wrong. cot(0) is undefined and so you have an indeterminant form 0 \times \infty. At best you have taken a standard indeterminant form 0/0 and made the problem more complicated.
__________________
There are two things you should never try to prove: the impossible and the obvious.

The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low and achieving our mark. (Michelangelo Buonarroti)

  • To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  • To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  • To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  • To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  • To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote
Reply

Tags
calclulus, limits, tangent, trig, trigonometry

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
Forum Jump


All times are GMT -7. The time now is 05:06 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.
©2005 - 2009 Math Help Forum


Math Help Forum is a community of maths forums with an emphasis on maths help in all levels of mathematics.
Register to post your math questions or just hang out and try some of our math games or visit the arcade.