Group Abstract Group Abstract

Message Boards Message Boards

Plot the following equation?

Posted 8 years ago

Hello.

I'd like to plot the equation, y versus x, as shown below.

(4.208*10^-7) (9.98687) y^2/x^2 = 1 - y - ((y^1.58273)/(x^0.58273))

But I'm just a beginner of mathematica, I have no idea to plot this.

And also If there is anybody can arrange that equation for one unknown quantity, y, by using mathematica, please let me know.

Thank you.

Attachments:
POSTED BY: soyeon ahn
2 Replies

You can use ContourPlot:

ContourPlot[(4.208*10^-7) (9.98687) y^2/x^2 ==
  1 - y - ((y^1.58273)/(x^0.58273)),
 {x, 0, 2}, {y, 0, 1}]

Be careful to use == (equation) and not = (assignment).

POSTED BY: Gianluca Gorni

Hello, I suspect there are no closed-form solutions for this equation. Given admissible X values, however, the corresponding Y values can be determined, as shown in the plot below:

ListLinePlot[
 Table[{x, 
   y /. NSolve[(4.208 10^-7) (9.98687) y^2/x^2 == 
       1 - y - ((y^1.58273)/(x^0.58273)), y, Reals][[1]]}, {x, .1, 20,
    0.1}], AxesLabel -> {"x", "y"}, LabelStyle -> Black]

Which will generate

enter image description here

POSTED BY: Chi-Hsiang Wang
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard