Advertisement
Guest User

hi sharan

a guest
Mar 26th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. with (plots, implicitplot):
  2. a := A[1,1] + 1:
  3. b := A[1,2]:
  4. c := A[2,1]:
  5. d := A[2,2] + 1:
  6. ellipse := (c^2+d^2)*x^2 - 2*(a*c + b*d)*x*y + (a^2+b^2)*y^2 = (a*d-b*c)^2 :
  7. print (ellipse);
  8. Z := implicitplot(ellipse, x=-10..10, y=-10..10, scaling=constrained, gridrefine=2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement