Determine dy/dx if y=(x^5)^lnx

  • Thread starter DevonZA
  • Start date
I did not know that when you divide you multiply the reciprocal. I can use this in the future.In summary, the derivative of y=(x^5)^lnx is 10(lnx)/x.
  • #1
DevonZA
181
6
My attempt:

lny=ln(x^5)^lnx
lny=lnxlnx^5
1/y.dy/dx=(lnx)d/dx(lnx^5)+d/dx(lnx)(lnx^5)
= lnx(1/x^5)+1/x(lnx^5)
= (lnx/x^5)+(lnx^5/x) <---- not sure if this simplifies to 1/x^4+lnx^4?
dy/dx= y(lnx/x^5 + lnx^5/x)
= (x^5)^lnx(lnx/x^5 + lnx^5/x)

Any help would be appreciated.
D.
 
Physics news on Phys.org
  • #2
DevonZA said:
My attempt:

lny=ln(x^5)^lnx
lny=lnxlnx^5
So far so good
1/y.dy/dx=(lnx)d/dx(lnx^5)+d/dx(lnx)(lnx^5)
= lnx(1/x^5)+1/x(lnx^5)
You forgot the chain rule. It should be:
##\ln x \frac{5x^4}{x^5} + \frac{\ln x^5 }{x}##
This will simplify nicely.
 
  • #3
Strictly speaking, this is not a thread suitable for the Differential Equations forum.
 
  • #4
RUber said:
So far so good

You forgot the chain rule. It should be:
##\ln x \frac{5x^4}{x^5} + \frac{\ln x^5 }{x}##
This will simplify nicely.

Thanks for your response RUber.
##\frac{d}{dx} lnx^5 = 5lnx^4##? Does it not? I am unsure how you got ##\ln x \frac{5x^4}{x^5}##
 
  • #5
SteamKing said:
Strictly speaking, this is not a thread suitable for the Differential Equations forum.

It has been moved, my apologies.
 
  • #6
DevonZA said:
##\frac{d}{dx} lnx^5 = 5lnx^4##? Does it not?
No. ##\ln x^5 = 5 \ln x##.
 
  • #7
DevonZA said:
Thanks for your response RUber.
##\frac{d}{dx} lnx^5 = 5lnx^4##? Does it not? I am unsure how you got ##\ln x \frac{5x^4}{x^5}##
Let g(x) = x^5, then you have ##\frac{d}{dx} \ln g(x) = \frac{1}{g(x)} g'(x) ## by the chain rule.

edit: Or you can take the simplification that pwsnafu gave first, and not have to worry about the chain rule.
 
  • #8
DevonZA said:
Thanks for your response RUber.
##\frac{d}{dx} lnx^5 = 5lnx^4##? Does it not? I am unsure how you got ##\ln x \frac{5x^4}{x^5}##
You can't ignore those two letters "ln" in front of x5. They mean something special.
 
  • #9
DevonZA said:
Thanks for your response RUber.
##\frac{d}{dx} lnx^5 = 5lnx^4##? Does it not?
Not (as already mentioned).
##\frac{d}{dx} lnx^5 = \frac{d}{dx} 5 lnx = 5 \frac{d}{dx} lnx## = ??
I am assuming that lnx^5 means ln(x5) and not (ln(x))5.
DevonZA said:
I am unsure how you got ##\ln x \frac{5x^4}{x^5}##

BTW, your original thread title was "Determine dy/dx of y=(x^5)^lnx". I changed "of" to "if" because you don't take "dy/dx" of something. This symbol already represents the derivative of y with respect to x. It is not a synonym of "take the derivative of".
 
  • #10
Okay let's see if I understand:

Determine ##\frac{dy}{dx}## if y=##(x^5)^{lnx}##

lny=ln##(x^5)^{lnx}##
lny=##lnxlnx^5##
##\frac{1}{y}## ##\frac{dy}{dx}## = (lnx)##\frac{d}{dx}(lnx^5) +\frac{d}{dx}(lnx)(lnx^5)##
= ##\ln x \frac{5x^4}{x^5} + \frac{\ln x^5 }{x}##
= ln5 + ##lnx^4##
= ##ln5x^4##
##\frac{dy}{dx}## = ##(x^5)^{lnx}## ##5lnx^4##
Mod note: edited the line above to fix the exponent.
I'm not confident in this answer but I've been trying all day and my brain hurts
 
Last edited by a moderator:
  • #11
DevonZA said:
Okay let's see if I understand:

Determine ##\frac{dy}{dx}## if y=##(x^5)^{lnx}##

lny=ln##(x^5)^{lnx}##
lny=##lnxlnx^5##
##\frac{1}{y}## ##\frac{dy}{dx}## = (lnx)##\frac{d}{dx}(lnx^5) +\frac{d}{dx}(lnx)(lnx^5)##
= ##\ln x \frac{5x^4}{x^5} + \frac{\ln x^5 }{x}##
You are good to here...but you should not include the 5x^4/x^5 in the logarithm.
##\ln x \frac{5x^4}{x^5} ## means ##\left( \frac{5x^4}{x^5} \right) \ln (x) = \frac{5\ln x}{x}##
##\frac{\ln x^5 }{x} =\frac{ 5\ln x}{x}##
= ln5 + ##lnx^4##
= ##ln5x^4##
##\frac{dy}{dx}## = ##(x^5)^{lnx}## ##5lnx^4##
##\ln (5x^4) \neq 5 \ln (x^4)##
 
  • #12
An alternate method would be to get the exponents out of the way early:
lny=ln##(x^5)^{lnx}##
lny=##lnxlnx^5 = 5 \ln x \ln x = 5 (\ln x) ^2 ##
##\frac{1}{y} \frac{dy}{dx}## = ##5 \frac{d}{dx}(\ln x)^2 ##
Which may be a more straightforward application with the chain rule.
 
  • Like
Likes PeroK
  • #13
RUber said:
You are good to here...but you should not include the 5x^4/x^5 in the logarithm.
##\ln x \frac{5x^4}{x^5} ## means ##\left( \frac{5x^4}{x^5} \right) \ln (x) = \frac{5\ln x}{x}##
##\frac{\ln x^5 }{x} =\frac{ 5\ln x}{x}##

##\ln (5x^4) \neq 5 \ln (x^4)##

I am more confused now? I did what you said earlier:

RUber said:
So far so good

You forgot the chain rule. It should be:
##\ln x \frac{5x^4}{x^5} + \frac{\ln x^5 }{x}##
This will simplify nicely.
 
  • #14
lny=ln##(x^5)^{lnx}##
lny=##lnxlnx^5 = 5 \ln x \ln x = 5 (\ln x) ^2 ##
##\frac{1}{y} \frac{dy}{dx}## = ##5 \frac{d}{dx}(\ln x)^2 ##
##\frac{dy}{dx}## = ##10(lnx).\frac{1}{x}##
x=1
 
  • #15
RUber said:
You are good to here...but you should not include the 5x^4/x^5 in the logarithm.
##\ln x \frac{5x^4}{x^5} ## means ##\left( \frac{5x^4}{x^5} \right) \ln (x) = \frac{5\ln x}{x}##
##\frac{\ln x^5 }{x} =\frac{ 5\ln x}{x}##

##\ln (5x^4) \neq 5 \ln (x^4)##

Should it be ##\ln x . \frac{5x^4}{x^5} ##
I am so confused
 
  • #16
DevonZA said:
lny=ln##(x^5)^{lnx}##
lny=##lnxlnx^5 = 5 \ln x \ln x = 5 (\ln x) ^2 ##
##\frac{1}{y} \frac{dy}{dx}## = ##5 \frac{d}{dx}(\ln x)^2 ##
This is right.
##\frac{dy}{dx}## = ##10(lnx).\frac{1}{x}##
You forgot your 1/y on the left side.
I have no clue why you say x = 1.
##\frac1y \frac{dy}{dx}## = ##10(lnx).\frac{1}{x} =\frac{10\ln x }{x} ##
## \frac{dy}{dx} = y \frac{10\ln x }{x}##
Then you are done.
 
  • Like
Likes DevonZA
  • #17
DevonZA said:
Should it be ##\ln x . \frac{5x^4}{x^5} ##
I am so confused
Yes. The chain rule says ##\frac{d}{dx} \ln x^5 = \frac{1}{x^5} \times 5x^4 ## Which is equal to ##\frac5x##
This makes sense, since ##\frac{d}{dx} \ln x^5 = \frac{d}{dx} (5\ln x) = 5 \frac{d}{dx} \ln x = \frac5x##

You had ##\ln x \times \frac{d}{dx} \ln x^5## which should be equal to ## \ln x \times \frac{1}{x^5} \times 5x^4##
 
  • Like
Likes DevonZA
  • #18
RUber said:
This is right.

You forgot your 1/y on the left side.
I have no clue why you say x = 1.
##\frac1y \frac{dy}{dx}## = ##10(lnx).\frac{1}{x} =\frac{10\ln x }{x} ##
## \frac{dy}{dx} = y \frac{10\ln x }{x}##
Then you are done.

Thank you RUber. Sorry I am slow I need more practice. Really appreciate your help.
 
  • #19
Not a problem. Take your time and look for chances to simplify before jumping into the derivative. Practice makes us all better.
 
  • Like
Likes DevonZA
  • #20
Final answer attached. Thanks to all who helped.
 

Attachments

  • question 1.1 answer.pdf
    264.5 KB · Views: 219
  • Like
Likes RUber

Related to Determine dy/dx if y=(x^5)^lnx

What is the equation for finding dy/dx?

The equation for finding dy/dx is the derivative formula, which is written as dy/dx = lim(h->0) [(f(x+h)-f(x))/h]. In other words, it is the limit of the change in y over the change in x as the change in x approaches 0.

How do you find the derivative of a function with a logarithm?

To find the derivative of a function with a logarithm, you can use the logarithmic differentiation method. This involves taking the natural logarithm of both sides of the equation, using logarithmic properties to simplify, and then taking the derivative of both sides. In the case of y=(x^5)^lnx, this would result in the equation ln(y) = ln(x^5)^lnx, which can then be simplified to ln(y) = 5ln(x)ln(lnx). From there, you can use the chain rule to find the derivative of ln(y) with respect to x, and then solve for dy/dx.

What is the power rule for finding derivatives?

The power rule is a basic rule in calculus that is used to find the derivative of a function raised to a constant power. It states that if a function is written as f(x) = x^n, then the derivative is given by f'(x) = nx^(n-1). This rule can be extended to functions with multiple terms or variables using the sum and constant multiple rules.

Can the derivative of a function be negative?

Yes, the derivative of a function can be negative. This indicates that the function is decreasing at that point. In the case of y=(x^5)^lnx, the derivative can be both positive and negative depending on the value of x, as the function has points of both increasing and decreasing slope.

What is the significance of finding dy/dx?

Finding dy/dx allows you to determine the instantaneous rate of change of a function at a specific point. This is important in many applications of calculus, such as optimization problems and curve sketching. Additionally, knowing the derivative can help you determine the slope of a tangent line to a curve at a given point, which can provide valuable information about the behavior of the function.

Similar threads

  • Calculus and Beyond Homework Help
Replies
4
Views
1K
  • Calculus and Beyond Homework Help
Replies
15
Views
1K
Replies
5
Views
1K
  • Calculus and Beyond Homework Help
Replies
4
Views
3K
  • Calculus and Beyond Homework Help
Replies
7
Views
7K
  • Calculus and Beyond Homework Help
Replies
7
Views
2K
  • Calculus and Beyond Homework Help
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
6
Views
2K
  • Calculus and Beyond Homework Help
Replies
4
Views
1K
  • Calculus and Beyond Homework Help
Replies
10
Views
674
Back
Top