Re[z]
複素数 z の実部を与える.
Re
Re[z]
複素数 z の実部を与える.
例題
すべて開く すべて閉じる例 (4)
Re[2 + 3I]Re[2Exp[I π / 3]]Plot3D[Re[x + I y], {x, -2, 2}, {y, -2, 2}]Reを用いて複素平面における領域を指定する:
ComplexRegionPlot[Re[z] > 0, {z, 2}]スコープ (29)
数値評価 (7)
Re[1.2]Re[(3/2) + (4/5)I]N[Re[E + I Pi], 25]Re[1.64 - 2I]Re[1.6400000000000000000 - 2I]Re[(164/100) - 2`20I]Re[(164/100) - 2.5I]N[Re[-5^(1/(5))], 100]//TimingN[Re[-5^(1/(5))], 10000];//TimingReは要素単位でリストと行列に縫い込まれる:
Re[{1.2, 1.5I, -1.8I}]Re[(| | |
| :- | :- |
| 1 | u |
| v | -I |)]ReはIntervalオブジェクトおよびCenteredIntervalオブジェクトに使うことができる:
Re[Interval[{-1, 1}]]Re[CenteredInterval[-2 + 3I, 1 + 2I]]特定の値 (6)
固定点におけるReの値:
Table[Re[n], {n, {1, I 7 / 3, -7 / 5 + I}}]Re[0]Re[Infinity]Re[I Infinity]Re[DirectedInfinity[-1 + I]]Re[ComplexInfinity]Re[-5^(1/(5))]Table[Re[Exp[k I 3π / 8]], {k, 8}]PiecewiseExpand[Re[I x], -2 < x < 2]可視化 (5)
Plot[Re[x^(1/(4))], {x, -3, 3}, MaxRecursion -> 15]Plot[Re[E^I x], {x, -2π, 2π}]Reを複素平面上で可視化する:
ComplexContourPlot[Re[z], {z, 2}, PlotLegends -> Automatic]Reを三次元で可視化する:
ComplexPlot3D[Re[z], {z, -2 - 2I, 2 + 2I}, PlotLegends -> Automatic, MeshFunctions -> {Re[#1]&, Im[#1]&}, Mesh -> Automatic]Reを使って複素平面上の領域を指定する:
ComplexRegionPlot[Re[z^3] > Re[(1/z^3)], {z, 2}]//Quiet関数の特性 (5)
Reは実数と複素数のすべての入力について定義される:
FunctionDomain[Re[x], x]FunctionDomain[Re[x], x, Complexes]Reの値域は数直線全体である:
FunctionRange[Re[x], x, y]FunctionRange[Re[x], x, y, Complexes]Reは奇関数である:
Re[-x] == -Re[x]Reは微分可能関数ではない:
Re'[x]Underscript[, hUnderscript[ -> , ℂ]0](Re[x + h] - Re[x]/h)Underscript[, hUnderscript[ -> , ℝ]0](Re[x + h] - Re[x]/h)ComplexExpandを使って結果を得る:
ComplexExpand[Re'[x]]TraditionalFormによる表示:
Re[x]//TraditionalForm関数の恒等式と簡約 (6)
Re[{Re[z], Im[z], I Re[z], Abs[z], Conjugate[z]}]ComplexExpand[Re[x]]ComplexExpand[Re[x + I y]]適切な仮定を使ってReを簡約する:
Simplify[Re[x], x > 0]FullSimplify[Re[z] + I Im[z]]Abs[x ^ 2]//FunctionExpandRoot式の実部を求める:
Re[Root[# ^ 5 + 11# ^ 2 + 1&, 2]]//RootReduceアプリケーション (3)
ComplexContourPlot[Re[z - (1/z)], {z, 3}, Contours -> 40, Epilog -> {Disk[{0, 0}, 1]}]z ^ 2Sin[z + z ^ 3] + Tan[(1/z)]ComplexExpand[Re[% /. z -> x + I y]]D[%, x, x] + D[%, y, y]//SimplifyanalyticReconstruct[u_, {x_, y_}, z_] := 2(u //. {x -> z / 2, y -> -I z / 2}) - (u //. {x -> 0, y -> 0})analyticReconstruct[{x ^ 2 - y ^ 2, Exp[x]Cos[y]}, {x, y}, z]//SimplifyComplexExpand[Re[% /. z -> x + I y]]//Simplify特性と関係 (8)
SimplifyとFullSimplifyを使ってReを含む式を簡約する:
{Re[Exp[I Pi / 5]x], Re[2x + I]}Simplify[%, x > 3]FullSimplify[Abs[Re[z]] ≤ Abs[z]]FullSimplify[ForAll[z, Implies[Abs[z - 1] ≤ 1, Re[z] ≥ 0]]]ComplexExpandは変数が実数であると仮定する:
ComplexExpand[Re[(x + I y) ^ 3]]ComplexExpand[Re[Sin[x + I y]]]ここでは z は実数であるとは仮定されず,結果はReとImによって与えられる:
ComplexExpand[Abs[z] ^ 2, z, TargetFunctions -> {Re, Im}]FunctionExpandは変数が実数であるとは仮定しない:
FunctionExpand[Re[z1 + z2 + z3]]FunctionExpand[Re[(x + I y) ^ 3]]ReImPlotは関数の実部と虚部をプロットする:
{Plot[{Re[ArcSin[x]], Im[ArcSin[x]]}, {x, -3, 3}],
ReImPlot[ArcSin[x], {x, -3, 3}]}Reを使って複素平面上の領域を表す:
Map[ComplexRegionPlot[#, {z, 3}, PlotPoints -> 40]&, {Re[(1 + I)z - 1] < 0, -1 < Re[z ^ 2] < 1, 0 < Re[(z - 1/z + 1)] < 3, Re[z ^ 7] < 7}]ReduceはReを含む方程式および不等式を解くことができる:
Reduce[Re[z ^ 2] > 1, z]Reduce[Re[z ^ 2] == 1 && Re[1 + z] ^ 2 == Abs[z] ^ 2, z]FindInstanceを使って,領域内のサンプル点を得ることができる:
FindInstance[Re[z ^ 2] > 1, z]AssumptionsでReを使う:
Integrate[x ^ s, {x, 1, Infinity}, Assumptions -> Re[s] < -1]Limit[1 / x ^ s, x -> Infinity, Assumptions -> Re[s] > 0]Integrate[x ^ s, {x, 1, Infinity}]考えられる問題 (2)
数値引数については,Reは未評価のままでもよい:
{Re[Log[2 + I]], Re[Sqrt[1 + I]]}FunctionExpand[%]Reは複素変数の関数なので微分できない:
D[Re[z], z]複素関数なので,Conjugate[z]を含まずにRe[z]を書くことはできない:
FullSimplify[Re[z] == (z + Conjugate[z]/2)]Limit[DifferenceQuotient[Re[z], {z, h}], h -> 0, Direction -> 1]Limit[DifferenceQuotient[Re[z], {z, h}], h -> 0, Direction -> I]ComplexExpandを使って実数値変数について微分可能な式を得る:
D[ComplexExpand[Re[x + I y]], y]おもしろい例題 (1)
Reを使って
のリーマン(Riemann)面の3D投影をプロットする:
ParametricPlot3D[{r Cos[φ], r Sin[φ], Re[Sqrt[r]Exp[I φ / 2]]}, {r, 0, 1}, {φ, 0, 4Pi}, PlotPoints -> 40]履歴
1988 で導入 (1.0) | 2021 で更新 (13.0)
テキスト
Wolfram Research (1988), Re, Wolfram言語関数, https://reference.wolfram.com/language/ref/Re.html (2021年に更新).
CMS
Wolfram Language. 1988. "Re." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2021. https://reference.wolfram.com/language/ref/Re.html.
APA
Wolfram Language. (1988). Re. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Re.html
BibTeX
@misc{reference.wolfram_2026_re, author="Wolfram Research", title="{Re}", year="2021", howpublished="\url{https://reference.wolfram.com/language/ref/Re.html}", note=[Accessed: 22-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_re, organization={Wolfram Research}, title={Re}, year={2021}, url={https://reference.wolfram.com/language/ref/Re.html}, note=[Accessed: 22-June-2026]}