how to find f(x) when f(1) is given

1 view (last 30 days)
I have a problem
f(1) = 1
f'(1) = 4
g(x) = f(x)/x^3
what is g'(1)?

Accepted Answer

KSSV
KSSV on 27 Oct 2022
Edited: KSSV on 27 Oct 2022
g'(x) would be:
g'(x) = f'(x)/x^3-3*f(x)/x^4 ; % remember uv rule
So in the above substitute the given values:
g' = 4/1^3-3*1/1^4 % substitute the given values
  1 Comment
Oyundari Battulga
Oyundari Battulga on 27 Oct 2022
Ok this makes sense, I should ve considered this as g(x) = f(x) * x^(-3) so i could apply uv rule!
Thank you!

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!