Finding derivatives of functions

In summary, the conversation revolved around finding the derivative of the function f(s) = [(√s) -1]/[(√s) + 1], which was solved using the derivative quotient rule. The conversation also discussed the use of LaTeX for typing mathematical equations and the importance of using parentheses to avoid ambiguity. Another problem was presented, and the expert advised to expand the function and differentiate each term separately for an easier solution. The conversation ended with the expert suggesting the use of braces in LaTeX for better formatting.
  • #1
TommG
28
0
Need to find derivative

f(s) = [(√s) -1]/[(√s) + 1]

answer in book is f'(s) = 1/[√s(√s+1)^2]
 
Physics news on Phys.org
  • #2
Your attempt at finding the derivative apparently consists of re-writing f(s) and replacing the square root signs with exponents.

Do you know how to take the derivative of this function: f(s) = s^(1/2)?
 
  • #3
SteamKing said:
Your attempt at finding the derivative apparently consists of re-writing f(s) and replacing the square root signs with exponents.

Do you know how to take the derivative of this function: f(s) = s^(1/2)?

yes I do. I deleted my attempt because I don't think I can write it well enough so people can understand it. Is it ok if I post a pic of it?
 
  • #4
TommG said:
yes I do. I deleted my attempt because I don't think I can write it well enough so people can understand it. Is it ok if I post a pic of it?

You should post it. If you use plain text you need to avoid ambiguity by use of parentheses; for example, a/b*c can mean either (a/b)*c or a/(b*c), so using ( ) is important. If you have several levels of nested parentheses, you can use different styles, such as [a + b*(c+d)]/(e + f*g) instead of (a + b*(c+d))/(e+f*g) if you think it looks clearer.

However, a much better way is to use LaTeX. Use [i tex ] xxxx [/i tex ] (remove spaces) to put the material xxx in line, such as [itex] a = \pm \sqrt{b}[/itex]. Alternatively, you can use # # xxx # # (remove spaces between the two #s); for example, ##a \geq b+c^2##. If you want displayed equations instead, use [ t ex ] xxxx [/ t e x] (no spaces) or $ $ xxxx $ $ (no spaces between $s); for example, here are two displayed expressions entered inside a single [t ex ] ... [/t ex ] pair:
[tex] a = \pm \sqrt{b}\\
\alpha \geq \frac{\beta + \gamma^2}{\beta - \gamma^2}
[/tex]

As for the commands themselves, refer to the LaTeX tutorial that you can find under the forum 'Site Info' -> 'Frequently Asked Questions' -> '2. How to type mathematical equations'. By far the easiest way is to examine a posting that has nice equations in it and right click on the equation (or go to the menu item display math as latex commands) and just look at what people typed.
 
Last edited:
  • #5
Well I figured out this problem but need help with another.
Thanks ray for the advice.

I could use help with a new problem.


Have to find the derivative.

[itex] v = \frac {1 + x - 4\sqrt{x}} x [/itex]

My attempt

[itex] v = \frac {1 + x - 4\sqrt{x}} x [/itex]

[itex] v = \frac {x(1-\frac{2}{√x}) - (1+x -4 √x)}{x^2}[/itex]

[itex] v = \frac {x-\frac{2x}{√x} -1-x +4 √x}{x^2}[/itex]

[itex] v = \frac {-\frac{2x}{√x} -1- +4 √x}{x^2}[/itex] don't know where to go from here


answer in book is [tex] v' = \frac {-1}{x^2}+ 2x ^{-3/2} [/tex]
 
Last edited:
  • #6
TommG said:
Well I figured out this problem but need help with another.
Thanks ray for the advice.

I could use help with a new problem.


Have to find the derivative.

[itex] v = \frac {1 + x - 4\sqrt{x}} x [/itex]

My attempt

[itex] v = \frac {1 + x - 4\sqrt{x}} {x} [/itex]

[itex] v = \frac {x(1-\frac{2}{√x}) - (1+x -4 √x)}{x^2}[/itex]

[itex] v = \frac {x-\frac{2x}{√x} -1-x +4 √x}{x^2}[/itex]

[itex] v = \frac {-\frac{2x}{√x} -1- +4 √x}{x^2}[/itex] don't know where to go from here


answer in book is [tex] v' = \frac {-1}{x^2}+ 2x ^{-3/2} [/tex]

You are doing it the hard way (and I have not checked your work). It is much easier to expand out ##v## and so write
[tex] v = \frac {1 + x - 4\sqrt{x}}{ x} = \frac{1}{x} + 1 - \frac{4}{\sqrt{x}} = x^{-1} + 1 - 4 x^{-1/2}[/tex]
and then differentiate each term separately. If you want, you can re-combine the results in the end.

BTW: in "\ frac{ } " you forgot the second { } (so you had "\ frac {y} x " instead of "\ frac {y}{x}". I am surprised it worked at all, but it does, as shown by the following test ##\frac{y}x##. Nevertheless, you should NEVER forget that final {} because if you have something more than one letter it won't work: "\ frac{y}x\sin(x) " produces ##\frac{y}x\sin(x)## instead of the wanted ##\frac{y}{x \sin(x)}##.
 
  • #7
Ray Vickson said:
You are doing it the hard way (and I have not checked your work). It is much easier to expand out ##v## and so write
[tex] v = \frac {1 + x - 4\sqrt{x}}{ x} = \frac{1}{x} + 1 - \frac{4}{\sqrt{x}} = x^{-1} + 1 - 4 x^{-1/2}[/tex]
and then differentiate each term separately. If you want, you can re-combine the results in the end.

BTW: in "\ frac{ } " you forgot the second { } (so you had "\ frac {y} x " instead of "\ frac {y}{x}". I am surprised it worked at all, but it does, as shown by the following test ##\frac{y}x##. Nevertheless, you should NEVER forget that final {} because if you have something more than one letter it won't work: "\ frac{y}x\sin(x) " produces ##\frac{y}x\sin(x)## instead of the wanted ##\frac{y}{x \sin(x)}##.

I have to do it the hard way.

I have to follow the derivative quotient rule.

Still need help if anyone could help out.
 
  • #8
Ray Vickson said:
BTW: in "\ frac{ } " you forgot the second { } (so you had "\ frac {y} x " instead of "\ frac {y}{x}". I am surprised it worked at all, but it does, as shown by the following test ##\frac{y}x##. Nevertheless, you should NEVER forget that final {} because if you have something more than one letter it won't work: "\ frac{y}x\sin(x) " produces ##\frac{y}x\sin(x)## instead of the wanted ##\frac{y}{x \sin(x)}##.
Interestingly, if you have just one letter in the numerator and in the denominator, you don't need braces at all:
Code:
##\frac a b##
is displayed as ##\frac a b##. I never realized that would work. I guess it makes sense in retrospect.
 
  • #9
TommG said:
I have to do it the hard way.

I have to follow the derivative quotient rule.

Still need help if anyone could help out.

(1) Why must you do it the hard way? Where in the original question does it tell you that?
(2) Why did you put everything over a common denominator? The quotient rule says that
[tex] \left( \frac{u}{v} \right)' = \frac{u'}{v} - \frac{u v'}{v^2}[/tex]
but you wrote
[tex] \left( \frac{u}{v} \right)' = \frac{u' v - u v'}{v^2} [/tex]
for no good reason that I can see. It is correct but unnecessary.
(3) You should combine and simplify your previous final answer.
(4) The book's answer does NOT involve a common denominator, so you need to 'undo' your final answer, or else re-write the book's answer in a form similar to yours, so you can compare the two.
 
  • #10
Ray Vickson said:
(1) Why must you do it the hard way? Where in the original question does it tell you that?
(2) Why did you put everything over a common denominator? The quotient rule says that
[tex] \left( \frac{u}{v} \right)' = \frac{u'}{v} - \frac{u v'}{v^2}[/tex]
but you wrote
[tex] \left( \frac{u}{v} \right)' = \frac{u' v - u v'}{v^2} [/tex]
for no good reason that I can see. It is correct but unnecessary.
(3) You should combine and simplify your previous final answer.
(4) The book's answer does NOT involve a common denominator, so you need to 'undo' your final answer, or else re-write the book's answer in a form similar to yours, so you can compare the two.

I have to do it the hard because my teacher said I have to when he gives us a quiz.

I put everything over a common denominator because of the rule in the book.
Here is a pic I took from my book.
https://www.dropbox.com/s/ca3l50hmgh56n41/IMG_20140606_121016.jpg
 
Last edited:
  • #11
TommG said:
Well I figured out this problem but need help with another.
Thanks ray for the advice.

I could use help with a new problem.


Have to find the derivative.

[itex] v = \frac {1 + x - 4\sqrt{x}} x [/itex]

My attempt

[itex] v = \frac {1 + x - 4\sqrt{x}} x [/itex]

[itex] v = \frac {x(1-\frac{2}{√x}) - (1+x -4 √x)}{x^2}[/itex]

[itex] v = \frac {x-\frac{2x}{√x} -1-x +4 √x}{x^2}[/itex]

[itex] v = \frac {-\frac{2x}{√x} -1- +4 √x}{x^2}[/itex] don't know where to go from here
Surely you know that [itex]\frac{x}{\sqrt{x}}= \sqrt{x}[/itex]?
What you have is the same as
[tex]\frac{-2\sqrt{x}- 1+ 4\sqrt{x}}{x^2}= \frac{2\sqrt{x}- 1}{x^2}= 2\frac{\sqrt{x}}{x^2}- \frac{1}{x^2}[/tex]
And, of course, [itex]\sqrt{x}/x^2= x^{1/2- 2}[/itex]

answer in book is [tex] v' = \frac {-1}{x^2}+ 2x ^{-3/2} [/tex]
 
  • #12
Ray Vickson said:
The quotient rule says that
[tex] \left( \frac{u}{v} \right)' = \frac{u'}{v} - \frac{u v'}{v^2}[/tex]
but you wrote
[tex] \left( \frac{u}{v} \right)' = \frac{u' v - u v'}{v^2} [/tex]
The second equation is the quotient rule as it was taught to me.
 
  • #13
Fredrik said:
The second equation is the quotient rule as it was taught to me.
Yup! (I agree with Fredrik -- if anyone cares.)

low*D(high) minus high*D(low) all over low squared.
 

FAQ: Finding derivatives of functions

What is the definition of a derivative?

A derivative is a measure of how much a function changes as its input changes. It is the slope of the tangent line at a specific point on a curve.

How do you find the derivative of a function?

The derivative of a function can be found by using the rules of differentiation, such as the power rule, product rule, quotient rule, and chain rule. These rules allow you to find the derivative of any algebraic function.

Why is finding derivatives important?

Finding derivatives is important because it allows us to understand the behavior of a function and how it changes over time. It is also used in many fields of science, such as physics and economics, to model and analyze real-world phenomena.

What is the difference between a derivative and an anti-derivative?

A derivative is the rate of change of a function, while an anti-derivative is the original function that was differentiated. In other words, a derivative gives us the rate of change at a specific point, while an anti-derivative gives us the function itself.

Can any function have a derivative?

No, not all functions have a derivative. For a function to have a derivative, it must be continuous and differentiable at every point in its domain. This means that the function must have a well-defined tangent line at every point on its curve.

Back
Top