How do I plot this curve?

y(1+0.5y) = x^2
where x = [-pi, pi]
Do I use fsolve? Is there an easier method? Appreciate any help

回答 (1 件)

John D'Errico
John D'Errico 2021 年 1 月 29 日
編集済み: John D'Errico 2021 年 1 月 29 日

0 投票

Why would you think you need to use fsolve? Even without the use of fimplicit this is just a hyperbola.
f = @(x,y) y.*(1 + y/2) - x.^2;
fimplicit(f,[-pi,pi])
You want something of an easier method than this?
Sigh. This was probably homework. But then, the use of fimplicit is probably not allowed in homework. In that case, suppose you knew the value of x. Could you then solve for y? Hint: how would the quadratic forrmula apply here? Could you find both roots of the quadratic in y, as a function of x?

1 件のコメント

Dan
Dan 2021 年 1 月 29 日
Tell your mom I said hi

サインインしてコメントする。

カテゴリ

質問済み:

Dan
2021 年 1 月 29 日

コメント済み:

Dan
2021 年 1 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by