Effacer les filtres
Effacer les filtres

How to find an equation of the tangent line to the curve f(x,y) =0 at the....

8 vues (au cours des 30 derniers jours)
Peter Pyrka
Peter Pyrka le 31 Oct 2019
Commenté : darova le 31 Oct 2019
the points (2.4, -2.7927) and (2.4, 2.7127)
f(x,y) = 4x + 2y -xy +3x^2 -5y^2 +5
  3 commentaires
Peter Pyrka
Peter Pyrka le 31 Oct 2019
my question is how I would do this problem in Matlab
darova
darova le 31 Oct 2019
How would you do this on paper?

Connectez-vous pour commenter.

Réponses (1)

Mani Teja
Mani Teja le 31 Oct 2019
Hello Peter,
This should help:
syms x y f(x,y)
f(x,y) = 4*x + 2*y -x*y +3*x^2 -5*y^2 +5;
a = f(2.4, -2.7927);
a = vpa(a,4); % Just to make it look better
b = f(2.4, 2.7127) ;
b = vpa(b,4);
Regards
Mani

Community Treasure Hunt

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

Start Hunting!

Translated by