How do you visualize the complex function (1+i)i and its multivalued nature?

Click For Summary

Homework Help Overview

The discussion revolves around visualizing the complex function (1+i)i and exploring its multivalued nature. Participants are examining the implications of expressing this function in terms of its logarithmic and exponential forms, particularly focusing on the concept of branching in the complex plane.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning

Approaches and Questions Raised

  • Participants discuss decomposing the function into its exponential form and consider how to represent it graphically. There are inquiries about the nature of the "sheets" in the complex plane and how to identify their locations. Some participants suggest plotting the argument function and its implications for visualizing the multivalued aspect of the function.

Discussion Status

The discussion is active, with participants providing insights into the nature of the function and its graphical representation. There is a focus on understanding the multivalued nature of the argument function and its effect on the visualization. Some participants have offered specific mathematical expressions and plotting techniques, while questions remain about the interpretation of these concepts.

Contextual Notes

Participants are navigating the complexities of multivalued functions in the context of homework constraints, particularly regarding the use of logarithmic identities and the implications of different branches in the complex plane.

magnifik
Messages
350
Reaction score
0
How do you plot (1+i)i, where i is the imaginary number. I decomposed it to eilog√2e-∏/4e2∏n (n = 0, +1, +2, ...) Should it be some kind of lattice? I would imagine it's discontinuous due to the n

Thanks
 
Physics news on Phys.org
Put it back into a + bi form.
 
No, it's not discontinuous. The n is only used to distinguish single-valued branching. It's still one single multi-function in the complex plane with an infinitely twisted sheet. Write it as:

[tex]f(z)=z^i[/tex]

Now, let z=1+i and draw a vertical line above that point in the complex plane. Where ever this line hits the sheets, that's the (infinite) values of (1+i)^i.
 
jackmell said:
No, it's not discontinuous. The n is only used to distinguish single-valued branching. It's still one single multi-function in the complex plane with an infinitely twisted sheet. Write it as:

[tex]f(z)=z^i[/tex]

Now, let z=1+i and draw a vertical line above that point in the complex plane. Where ever this line hits the sheets, that's the (infinite) values of (1+i)^i.

what do you mean by "the sheets"? how do i know where those are located
 
For n=0, this is approximately 0.428829 + 0.154872 i
 
magnifik said:
what do you mean by "the sheets"? how do i know where those are located

I skipped a lot. You can write:
[tex] \begin{equation}<br /> \begin{align*}<br /> z^i&=e^{i\log(z)}=e^{i(\ln|z|+i\arg(z))}\\<br /> &=e^{-\arg(z)+i\ln|z|}<br /> \end{align*}<br /> \label{eq:}<br /> \end{equation}[/tex]
It's the [itex]\arg(z)[/itex] function that's multivalued and that function causes the plot to twist over itself. It's easy to draw [itex]\arg(z)[/itex]. It's just the function [itex]f(r,\theta)=\theta[/itex] and the Mathematica code is simply:

Code:
ParametricPlot3D[{Re[z], Im[z], t} /. z -> r Exp[I t], {r, 0, 
  2}, {t, -4 \[Pi], 4 \[Pi]}, BoxRatios -> {1, 1, 2}, 
 PlotPoints -> {35, 35}]

So the expression [itex]e^{-\arg(z)}[/itex] represents the real part of the function [itex]f(z)=z^i[/itex]. However, it's difficult to draw that function because it's exponential. But it's qualitatively the same as just [itex]\arg(z)[/itex]. So I'll just plot (x,y,arg(x+iy)) below: Now draw that function in the complex plane, then draw a vertical line over the point z=1+i and where ever the line intersects the plot is the multiple values of arg(1+i) and that would be conceptually the same as doing that for [itex]e^{-\arg(z)}[/itex]. Here's the complete code to show that:

Code:
myline = Graphics3D[{Thickness[0.008], Red, 
    Line[{{1, 1, -20}, {1, 1, 20}}]}];
mypoints = 
  Graphics3D[{PointSize[0.05], Blue, 
    Point @@ {{1, 1, #}} & /@ {\[Pi]/4, 9 \[Pi]/4, 
      17 \[Pi]/4, -7 \[Pi]/4}}];

Show[{ParametricPlot3D[{Re[z], Im[z], t} /. z -> r Exp[I t], {r, 0, 
    2}, {t, -4 \[Pi], 4 \[Pi]}, BoxRatios -> {1, 1, 2}, 
   PlotPoints -> {35, 35}], myline, mypoints}, 
 PlotRange -> {{-2, 2}, {-2, 2}, {-10, 10}}]
 

Attachments

  • my arg function.jpg
    my arg function.jpg
    22.2 KB · Views: 408
Last edited:

Similar threads

  • · Replies 17 ·
Replies
17
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 14 ·
Replies
14
Views
2K
Replies
32
Views
4K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
Replies
5
Views
4K