1
$\begingroup$

Can you help me with the steps getting to the right side from the left of the equation.

logarithm equation

$\endgroup$
2
  • $\begingroup$ Why dont you use Mathematica with Debug/Trace turned on? $\endgroup$
    – WolframFan
    Commented Jan 11, 2015 at 5:11
  • 2
    $\begingroup$ This is just l'Hospital's rule: Take the ratio of the derivative of the numerator and the derivative of the denominator on the left-hand side. $\endgroup$
    – David G. Stork
    Commented Jan 11, 2015 at 6:12

1 Answer 1

7
$\begingroup$
f[x_] = (1 - 3^(1/x))/(1 + 3^(1/x));

Plot[f[x], {x, -1, 1}, Exclusions -> {x == 0}]

enter image description here

From the documentation for Limit,

Direction -> -1 takes variables to approach their limits by decreasing from larger values.

Limit[f[x], x -> 0, Direction -> -1]

-1

Using WolframAlpha from within Mathematica,

WolframAlpha["Limit[(1-3^(1/x))/(1+3^(1/x)), x -> 0, Direction -> -1]", 
  {{"Limit", 2}, "Content"}, PodStates -> {"Limit__Step-by-step solution"}]

enter image description here

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .