1

I want to plot the complex sequence of numbers $(1/(1 + I))^n$ so that I can roughly see divergence/convergence. I tried DiscretePlot but doesn't seem to work.

David G. Stork
  • 41,180
  • 3
  • 34
  • 96
helios321
  • 113
  • 3

2 Answers2

5

You can use the new in M12 function ComplexListPlot:

ComplexListPlot[Table[(1/(1+I))^n, {n, 10}]]

enter image description here

In earlier versions you can use ListPlot:

ListPlot[Table[ReIm[1/(1+I)^n], {n, 10}]]

enter image description here

If you want a continuous curve, you can use ParametricPlot:

ParametricPlot[ReIm[1/(1+I)^n], {n, 0, 10}]

enter image description here

Carl Woll
  • 130,679
  • 6
  • 243
  • 355
2

I would be tempted to plot this in magnitude and phase:

c = Table[(1/(1 + I))^n, {n, 25}];
ListPlot[{Abs[c], Arg[c]}]

enter image description here

You can see the convergence of the magnitude to zero and the phase constantly decreasing with constant slope.

bill s
  • 68,936
  • 4
  • 101
  • 191