Wolfram Language Fast Introduction for Math Students
Démarrer »

Analyse complexe

L'unité imaginaire est représentée par I :

In[1]:=
Click for copyable input
I^2
Out[1]=

La plupart des opérations traitent automatiquement les nombres complexes :

In[2]:=
Click for copyable input
(1 + I) (2 - 3 I)
Out[2]=

Développe les expressions complexes :

In[1]:=
Click for copyable input
ComplexExpand[Sin[x + I y]]
Out[1]=

Convertis les expressions entre formes exponentielles et trigonométriques :

In[2]:=
Click for copyable input
ExpToTrig[E^(I x)]
Out[2]=
In[3]:=
Click for copyable input
TrigToExp[%]
Out[3]=

Tape ÉCHAPcoÉCHAP pour avoir le symbole Conjugate :

In[1]:=
Click for copyable input
(3 + 2 I)\[Conjugate]
Out[1]=

Extrais les parties imaginaires et réelles d'une expression :

In[2]:=
Click for copyable input
ReIm[3 + 2 I]
Out[2]=

Ou trouve la valeur absolue et l'argument :

In[3]:=
Click for copyable input
AbsArg[(1 + I)]
Out[3]=

Trace une cartographie conforme avec ParametricPlot :

In[1]:=
Click for copyable input
ParametricPlot[ReIm[E^(I \[Omega])], {\[Omega], 0, 2 \[Pi]}]
Out[1]=

Utilise AbsArg dans un PolarPlot :

In[2]:=
Click for copyable input
PolarPlot[AbsArg[E^(I \[Omega])], {\[Omega], 0, \[Pi]}]
Out[2]=

Visualise les composants complexes avec DensityPlot :

In[3]:=
Click for copyable input
DensityPlot[Im[ArcSin[(x + I y)^2]],
 {x, -2, 2}, {y, -2, 2}]
Out[3]=

RÉFÉRENCE RAPIDE : Nombres complexes »

RÉFÉRENCE RAPIDE : Fonctions de variables complexes »