finding an equation of the tangent line to a curve at the given point in MATLAB
165 ビュー (過去 30 日間)
古いコメントを表示
I tried looking for and solving this for an hour and I am stumped.
the question I am trying to have answered is: find an equation of the tangent line to the curve at the given point y=4x-3x^2, (2,-4)
0 件のコメント
回答 (2 件)
Birdman
2021 年 1 月 27 日
Actually, it is quite simple to do. For instance, let's define the equation symbolically in MATLAB:
syms y(x)
y(x)=4*x-3*x^2;
Then, take the derivative:
dy(x)=diff(y,x)
which would be
4-6*x
At this point, you can find the slope of the tangent line at point (2,-4) by inserting 2 into the above equation, which would be
4-6*(2)=-8
You know that the slope of tangent line is -8, but you should also find the value of y for that tangent line. Consider it as
y=-8*x+c
Then find the c by simply
-4=-8*(2)+c
where c would be 12.
If you plot both curves in the same figure, you will get
where the blue line is the original equation and red line is tangent line.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!