Math software to plot functions of the kind $f:\Bbb R\to\Bbb C$ in 3D?

140 Views Asked by At

Im experimenting with different computer algebra systems trying to plot a function of the kind

$$f:\Bbb R\to\Bbb C$$

in 3D, but I dont know a simple and direct solution in any CAS to this kind of plot. To context the question I will leave an elementary function and I will be glad to see some example, the simpler and direct the best, to plot it in 3d in any CAS.

Let $f:\Bbb R\to\Bbb C$ such that $x\mapsto i^x$

My interest is mainly in free software like Sage, Sympy, Maxima or Axiom. I tried too Geogebra but it doesnt support in any way complex numbers so I cant plot the above in any direct way.

Thank you in advance.

2

There are 2 best solutions below

4
On BEST ANSWER

While Mathematica is not free you can use it for free via Wolfram's Open Programming Lab - https://lab.open.wolframcloud.com/

Here is my go at your graph using it: enter image description here

0
On

The best solution I found by now is a parametric plot in Geogebra, unexpectedly expressions like $\Re(i^x)$ and $\Im(i^x)$ works inside of parametric curves in geogebra.

Then the code

Curve[u, real(ί^u), imaginary(ί^u), u, -10, 10]

works perfectly. You can check it here.