1

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, , }??

1 Answers1

3
RegionPlot[
 ImplicitRegion[9 x^2 + 11 y^2 == 68 + 2 Sqrt[3] x y, {x, y}]]

enter image description here

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