SOLUTION: Without using l’Hopital’s Rule or Series find
Limit(((1+x)^(1/x)-e)/x) as x=0
Algebra.Com
Question 1117867: Without using l’Hopital’s Rule or Series find
Limit(((1+x)^(1/x)-e)/x) as x=0
Answer by math_helper(2461) (Show Source): You can put this solution on YOUR website!
Approaching 0 from the negative side:
perl -e '$x=-.1; $e=2.718281828459; for($j=1; $j<6; $j++) { $a = ((1+$x)**(1/$x)-$e)/$x; print "f($x) = $a\n"; $x=$x/10;}'
f(-0.1) = -1.49690162333441
f(-0.01) = -1.37171979700281
f(-0.001) = -1.36038798385263
f(-0.0001) = -1.35926551149801
f(-1e-05) = -1.35915214047877
And approaching 0 from the positive side:
perl -e '$x=.1; $e=2.718281828459; for($j=1; $j<6; $j++) { $a = ((1+$x)**(1/$x)-$e)/$x; print "f($x) = $a\n"; $x=$x/10;}'
f(0.1) = -1.24539368358998
f(0.01) = -1.34679990374718
f(0.001) = -1.35789622340665
f(0.0001) = -1.35901634074731
f(1e-05) = -1.35912667031945
Which looks to be
RELATED QUESTIONS
Without using l’Hopital’s Rule or Series find
Limit(tan(x))^(2x-pi) as x=pi/2 (answered by math_helper)
Find the limit using l'Hospital's Rule.
lim(as x approaches to... (answered by ikleyn)
Use L'Hospital's Rule to find the limit of (1+2x)^(4/x) as x approaches 0.
(answered by solver91311)
Without using L'Hospitals rule find :
Limt((e^(17x)-17e^x +16)/(e^(16x)-16e^x+15)). as (answered by ikleyn)
Explain why L’Hôpital’s rule cannot be used to find the limit of g(x) = e^2x / x
as x (answered by ikleyn)
Use L'Hopital's rule to determine lim {tanx-x/sinx-x}, for x tend to... (answered by Solver92311,robertb)
without L'Hospitals rule prove that :
limt(x^(1/x)) =1 (as x= 1) (answered by MathLover1,ikleyn)
as x approaches 1
find the limit of... (answered by stanbon)