I want to solve this implicit derivative

6 visualizaciones (últimos 30 días)
Muhammad Daniyal
Muhammad Daniyal el 23 de Dic. de 2016
Editada: Karan Gill el 17 de Oct. de 2017
I want to solve this implicit derivative X^2+y^2=100 using MATLAB ? I want complete solution can any one please help me in this . I am very thankful
  3 comentarios
Muhammad Daniyal
Muhammad Daniyal el 23 de Dic. de 2016
Its not working btw
John D'Errico
John D'Errico el 23 de Dic. de 2016
Editada: John D'Errico el 23 de Dic. de 2016
What implicit derivative? That looks like no more than the equation of a circle. Do you just want to compute dy/dX? What is not working? By the way, answers is not here to do your homework (as this clearly is), so that you want a complete solution is something we should not be giving you anyway.
So, when you say it is not working, what have you tried?

Iniciar sesión para comentar.

Respuestas (2)

Walter Roberson
Walter Roberson el 23 de Dic. de 2016
dsolve('x^2+D2y=100')
  1 comentario
Karan Gill
Karan Gill el 23 de Dic. de 2016
Please don't use string input to "dsolve". See my answer below.

Iniciar sesión para comentar.


Karan Gill
Karan Gill el 23 de Dic. de 2016
Editada: Karan Gill el 17 de Oct. de 2017
syms y(x)
D2y = diff(y,x,2);
eqn = x^2 + D2y == 100;
sol = dsolve(eqn)
sol =
C2 + (x*(- x^3 + 600*x + C1))/12
Karan
  4 comentarios
Walter Roberson
Walter Roberson el 26 de Dic. de 2016
I just encountered a case that works for the string version but fails for the expression version due to a toolbox bug. :(
(Karan, if you are interested, see case 02340431, just filed.)
Karan Gill
Karan Gill el 10 de En. de 2017
Thanks for reporting the bug, as always. We are looking into it.

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by