HP Forums
is there a way to plot a complex relation? - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: is there a way to plot a complex relation? (/thread-12379.html)



is there a way to plot a complex relation? - Cygnus - 02-08-2019 12:57 AM

im trying to plot this relation:

Re(−3 + 3 i + conj(z) ) = Im(−4 + 4 i + conj(z) )

z = x+y*i

i've been searching for hours how to plot this so as my last resort I came to this forum.


RE: is there a way to plot a complex relation? - Albert Chan - 02-08-2019 07:26 PM

XCas 1.4.9-57(win32): config = exact real RAD 12 XCas

z := x + y*i
solve(re(-3 + 3*i + conj(z)) = im(-4 + 4*i + conj(z)), y) ==> [-x + 7]
plot(-x + 7)