I have an equation: 9 x^2 + 11 y^2 == 68 + 2 Sqrt[3] x y. Can I plot this function in mathematica without giving the {x, , } and {y, , }??
Asked
Active
Viewed 49 times
1
1 Answers
3
RegionPlot[
ImplicitRegion[9 x^2 + 11 y^2 == 68 + 2 Sqrt[3] x y, {x, y}]]
For non-trivial examples, ContourPlot with explicit bounds can be much faster.
You can also find the bounds with functions like MaxValue, e.g.
MaxValue[{x, 9 x^2 + 11 y^2 == 68 + 2 Sqrt[3] x y}, {x, y}]
(* Sqrt[187/6]/2 *)
Szabolcs
- 234,956
- 30
- 623
- 1,263

WolframAlpha["plot 9 x^2+11 y^2\[Equal]68+2 Sqrt[3] x y"]for example. – Daniel Lichtblau Aug 22 '18 at 03:43