AsymptoticGreater[f,g,xx*]
xx*のときに
または
となる条件を与える.
AsymptoticGreater[f,g,{x1,…,xn}{
,…,
}]
のときに
または
となる条件を与える.
AsymptoticGreater
AsymptoticGreater[f,g,xx*]
xx*のときに
または
となる条件を与える.
AsymptoticGreater[f,g,{x1,…,xn}{
,…,
}]
のときに
または
となる条件を与える.
詳細とオプション
- 「漸近的により大きい」は,f は g のlittle-omegaである,f は g よりも程度が大きい,f は g よりも速く大きくなる,f は g を支配する等とも表現される.点 x*はコンテキストから推測されることが多い.
- 「漸近的により大きい」は順序関係で,
であるすべての定数について x が x*の近くにあるときに
であることを意味する. - 点の近くの関数や級数の単純で厳密な下限を表すために,また,方程式の解や複雑な計算の単純で厳密な下限を表すためにしばしば使われる.
- 有限極限点の x* および {
,…,
}については以下のようになる. -
AsymptoticGreater[f[x],g[x],xx*] すべての
について,
が
を意味する
が存在するAsymptoticGreater[f[x1,…,xn],g[x1,…,xn],{x1,…,xn}{
,…,
}]すべての
について,
が
を意味する
が存在する - 無限極限点については以下のようになる.
-
AsymptoticGreater[f[x],g[x],x∞] すべての
について,
が
を意味する
が存在するAsymptoticGreater[f[x1,…,xn],g[x1,…,xn],{x1,…,xn}{∞,…,∞}] すべての
について,
が
を意味する
が存在する - g[x]が x*付近で0の無限集合を持たない場合,AsymptoticGreater[f[x],g[x],xx*]はLimit[Abs[f[x]/g[x]],xx*]∞のときかつそのときに限り存在する.
- 次は,使用可能なオプションである.
-
Assumptions $Assumptions パラメータについての仮定 Direction Reals 極限点に近付く方向 GenerateConditions Automatic パラメータについての条件を生成する Method Automatic 使用するメソッド PerformanceGoal "Quality" 何を最適化するか - 次は,Directionの可能な設定である.
-
Reals または "TwoSided" 両実数方向から "FromAbove" または -1 上,つまりより大きい値から "FromBelow" または +1 下,つまりより小さい値から Complexes すべての複素方向から Exp[ θ] 方向
に{dir1,…,dirn} 変数 xiに方向 diriを使う - x*におけるDirectionExp[ θ]は,曲線の接線が極限点 x*に近付く方向を示す.
- 次は,GenerateConditionsの可能な設定である.
-
Automatic 一般的ではない条件のみ True すべての条件 False 条件なし None 条件が必要な場合には未評価で返す - PerformanceGoalの可能な設定には,$PerformanceGoal,"Quality","Speed"がある."Quality"設定のとき,AsymptoticGreaterはより多くの問題を解いたりより簡単な結果を与えたりすることが多いが,より多くの時間とメモリが必要になる可能性がある.
例題
すべて開く すべて閉じる例 (2)
AsymptoticGreater[x ^ 2 , x, x -> ∞]Plot[{x ^ 2, x}, {x, 0, 10}, PlotLegends -> "Expressions"]AsymptoticGreater[x ^ 2 + y ^ 2, x + y, {x, y} -> ∞]Plot3D[{x ^ 2 + y ^ 2, x + y}, {x, 0, 10}, {y, 0, 10}, PlotLegends -> "Expressions"]スコープ (9)
AsymptoticGreater[x, -x ^ 2, x -> ∞]AsymptoticGreater[(1/x^2), (1/x), x -> 0]答は明示的なTrueまたはFalseではなく,ブール式かもしれない:
AsymptoticGreater[Sinh[(x - 2) / p], Sin[x - 2], x -> 2]パラメータを含む関数を比較する場合は,結果についての条件が生成されることがある:
AsymptoticGreater[(1/(x - 1)^p), (10/x - 1), x -> 1]AsymptoticGreater[x^4, x^2 UnitStep[x], x -> 0]AsymptoticGreater[x^4, x^2 UnitStep[x], x -> 0, Direction -> "FromBelow"]AsymptoticGreater[x^4, x^2 UnitStep[x], x -> 0, Direction -> "FromAbove"]Plot[{x^4, x^2UnitStep[x]}, {x, -1, 1}, PlotTheme -> {"DashedLines", "Detailed"}]Sqrtのような関数は,負の実数に沿って両方の実数方向で同じ関係があるかもしれない:
AsymptoticGreater[(Sqrt[z] - I)^3, (z + 1), z -> -1]AsymptoticGreater[(Sqrt[z] - I)^3, (z + 1), z -> -1, Direction -> -I]AsymptoticGreater[(Sqrt[z] - I)^3, (z + 1), z -> -1, Direction -> I]これは,軸が交差するときにSqrtの虚部の符号が逆になるところで分枝切断されているためである:
TableForm[Table[{-1 + Δ, Sqrt[-1 + Δ], Abs[Sqrt[-1 + Δ] - I]}, {Δ, {0.01, -0.01, 0.01I, -0.01I}}], TableHeadings -> {None, {z, Sqrt[z], HoldForm@Abs[Sqrt[z] - I]}}]AsymptoticGreater[(Sqrt[z] - I)^3, (z + 1), z -> -1, Direction -> Complexes]4つの実数および複素数の方向から近付く場合の関数の相対サイズを可視化する:
Plot[{Abs[ (-1 + Δz/(Sqrt[-1 + Δz] - I)^3)], Abs[ (-1 + I Δz/(Sqrt[-1 + I Δz] - I)^3)]}, {Δz, -1, 1}, IconizedObject[«plot options»]]AsymptoticGreater[(x - 1)^2(y - 2), Sin[ x]Cos[3y / 4], {x, y} -> {1, 2}]Plot3D[{Abs[(x - 1)^2(y - 2)], Abs[Sin[ x]Cos[ 3y / 2]]}, {x, y}∈Disk[{1, 2}, .9], PlotTheme -> "Detailed"]AsymptoticGreater[ Exp[x]Log[y], x y, {x, y} -> {-∞, ∞}]AsymptoticGreater[Sinh[x]y, Sinh[a x]y ^ n, {x, y} -> {∞, 1}]オプション (10)
Assumptions (1)
Assumptionsを使ってパラメータについての条件を指定する:
AsymptoticGreater[1, x ^ a, x -> 0, Assumptions -> a ≥ 0]AsymptoticGreater[1, x ^ a, x -> 0, Assumptions -> a < 0]Direction (5)
AsymptoticGreater[x UnitStep[x], x Sin[x], x -> 0, Direction -> "FromBelow"]AsymptoticGreater[x UnitStep[x], x Sin[x], x -> 0, Direction -> 1]AsymptoticGreater[x UnitStep[x], x Sin[x], x -> 0, Direction -> "FromAbove"]AsymptoticGreaterEqual[x UnitStep[x], x Sin[x], x -> 0, Direction -> -1]AsymptoticGreater[FractionalPart[x ^ 2]Sin[x], 4Cos[x / 2](x - 2), x -> 2, Direction -> "FromBelow"]AsymptoticGreater[FractionalPart[x ^ 2]Sin[x], 4Cos[x / 2](x - 2), x -> 2, Direction -> "FromAbove"]AsymptoticGreater[FractionalPart[x ^ 2]Sin[x], 4Cos[x / 2](x - 2), x -> 2, Direction -> "TwoSided"]Plot[{FractionalPart[x ^ 2]Sin[x], 4Cos[x / 2](x - 2), Abs[(FractionalPart[x ^ 2]Sin[x]/4Cos[x / 2](x - 2))]}, {x, 1.5, 2.5}, PlotLegends -> "Expressions"]AsymptoticGreater[Tan[x]^2, (2/2x - π), x -> π / 2, Direction -> "FromBelow"]AsymptoticGreater[Tan[x]^2, (2/2x - π), x -> π / 2, Direction -> "FromAbove"]AsymptoticGreater[Tan[x]^2, (2/2x - π), x -> π / 2, Direction -> ℝ]AsymptoticGreater[Tan[x]^2, (2/2x - π), x -> π / 2, Direction -> ℂ]AsymptoticGreater[Sqrt[Tanh[x]], Sqrt[x - 1] - I, x -> 0, Direction -> +I]AsymptoticGreater[Sqrt[Tanh[x]], Sqrt[x - 1] - I, x -> 0, Direction -> -I]AsymptoticGreater[Sqrt[Tanh[x]], Sqrt[x - 1] - I, x -> 0, Direction -> Reals]AsymptoticLess[Sqrt[Tanh[x]], Sqrt[x - 1] - I, x -> 0, Direction -> Complexes]f[x_, y_] := x + Abs[y]g[x_, y_] := Sin[x y]AsymptoticGreater[f[x, y], g[x, y], {x, y} -> {0, 0}, Direction -> "FromAbove"]AsymptoticGreater[f[x, y], g[x, y], {x, y} -> {0, 0}, Direction -> {"FromAbove", "FromAbove"}]AsymptoticGreater[f[x, y], g[x, y], {x, y} -> {0, 0}, Direction -> {"FromBelow", "FromAbove"}]AsymptoticGreater[f[x, y], g[x, y], {x, y} -> {0, 0}, Direction -> {"FromAbove", Reals}]AsymptoticGreater[f[x, y], g[x, y], {x, y} -> {0, 0}, Direction -> {Reals, "FromBelow"}]
に沿った部分を除いて原点近くで大きくなる,関数の割合を可視化する:
ContourPlot[Abs[f[x, y] / g[x, y]], {x, -1, 1}, {y, -1, 1}, PlotLegends -> Automatic, ClippingStyle -> Automatic]GenerateConditions (3)
AsymptoticGreater[1, x ^ n, x -> 0, GenerateConditions -> False]AsymptoticGreater[1, x ^ n, x -> 0]AsymptoticGreater[Exp[a x], 1, x -> ∞, GenerateConditions -> None]AsymptoticGreater[Exp[a x], 1, x -> ∞]デフォルトで,特殊な値でしか結果が無効にならない場合は,条件は生成されない:
AsymptoticGreater[(x - a)^2 + y^2, x y, {x, y} -> {0, 0}]GenerateConditions->Trueのときは,これらの一般的ではない条件も報告される:
AsymptoticGreater[(x - a)^2 + y^2, x y, {x, y} -> {0, 0}, GenerateConditions -> True]PerformanceGoal (1)
PerformanceGoalを使って潜在的に高価な計算を回避する:
f = y^2 - 2 y z + z^2 - y (x - 2 y + 3 z) + z (x - 2 y + 3 z) + (x - 2 y + 3 z)^2;
g = 2 y z^2 - z^3 + y (x - 2 y + 3 z)^2 - z (x - 2 y + 3 z)^2;AsymptoticGreater[f, g, {x, y, z} -> {0, 0, 0}, PerformanceGoal -> "Speed"]//AbsoluteTimingデフォルト設定では,使用可能なすべての手法を使って結果を得ようとする:
AsymptoticGreater[f, g, {x, y, z} -> {0, 0, 0}]//AbsoluteTimingアプリケーション (18)
基本的なアプリケーション (4)
{AsymptoticGreater[1, x, x -> 0], AsymptoticGreater[x, x^2, x -> 0], AsymptoticGreater[x^2, x^3, x -> 0]}AsymptoticGreater[x^k, x^l, x -> 0, Assumptions -> {k, l}∈ℤ && l > k ≥ 0]Plot[{1, Abs[x], Abs[x^2], Abs[x^3]}, {x, -1, 1}, PlotLegends -> "Expressions"]AsymptoticGreater[x^k, x^l, x -> 0, Assumptions -> l > k]Plot[{Abs[1 / x], Abs[1 / Sqrt[x]], 1, Abs[Sqrt[x]], Abs[x]}, {x, -1, 1}, PlotLegends -> "Expressions"]{AsymptoticGreater[x^3, x^2, x -> ∞], AsymptoticGreater[x^2, x, x -> ∞], AsymptoticGreater[x^1, x^0, x -> ∞]}AsymptoticGreater[x^k, x^l, x -> ∞, Assumptions -> {k, l}∈ℤ && 0 ≤ l < k]LogPlot[{1, Abs[x], Abs[x^2], Abs[x^3]}, {x, 10, 100}, PlotLegends -> "Expressions"]AsymptoticGreater[x^k, x^l, x -> ∞, Assumptions -> l < k]LogPlot[{Abs[1 / x], Abs[1 / Sqrt[x]], 1, Abs[Sqrt[x]], Abs[x]}, {x, 10, 100}, PlotLegends -> "Expressions"]AsymptoticGreater[x, x^2Sin[1 / x], x -> 0]Plot[{Abs[x^2Sin[1 / x]], Abs[x], x^2}, {x, -2 / 3, 2 / 3}, PlotStyle -> {Automatic, Automatic, Dashed}, PlotLegends -> "Expressions"]AsymptoticGreater[x^2(Sin[x] + 2), x, x -> ∞]LogPlot[{x, x^2(Sin[x] + 2)}, {x, 1, 100}, PlotLegends -> "Expressions"]絶対誤差と相対誤差 (2)
関数
は,
のとき
なら,小さい絶対誤差で
のときに
を近似する.
のときに小さい絶対誤差で
が
を近似することを示す:
AsymptoticGreater[1, Exp[x] - 1, x -> 0]AsymptoticGreater[1, Exp[x] - (1 + x), x -> 0]AsymptoticGreater[1, Cosh[x] - Exp[x] / 2, x -> ∞]AsymptoticGreater[1, Cosh[x] - Exp[-x] / 2, x -> -∞]関数
は,
のときに
なら,
のときに小さい相対誤差で
を近似する.
が
のとき小さい相対誤差で
を近似することを示す:
AsymptoticGreater[1 + x, Exp[x] - (1 + x), x -> 0]AsymptoticGreater[(1/x^2), ((1/x) + (1/x^2)) - (1/x^2), x -> 0]AsymptoticLess[1, ((1/x) + (1/x^2)) - (1/x^2), x -> 0]同様に,スターリング(Stirling)の公式
の
の近似は
のとき小さい相対誤差を持つ:
AsymptoticGreater[Sqrt[2π n](n / E)^n, n! - Sqrt[2π n](n / E)^n, n -> ∞]AsymptoticGreater[1, n! - Sqrt[2π n](n / E)^n, n -> ∞]漸近近似 (6)
は関数であり,
は
の近くにおける
の近似であるとすると,
において
ならこの近似は漸近的である.言い換えるなら,剰余すなわち誤差
は近似より漸近的に小さくなる.
が
における
の漸近近似であることを示す:
AsymptoticGreater[1, (x^2 + x + 1) - 1, x -> 0]AsymptoticGreater[x + 1, (x^2 + x + 1) - (x + 1), x -> 0]AsymptoticGreater[1.5, (x^2 + x + 1) - 1.5, x -> 0]スターリングの公式
は
のときの
の漸近近似であることを示す:
AsymptoticGreater[Sqrt[2π n](n / E)^n, n! - Sqrt[2π n](n / E)^n, n -> ∞]AsymptoticGreater[x / Log[x], PrimePi[x] - x / Log[x], x -> ∞]Seriesは初等関数と特殊関数の漸近近似を生成する.例えば,
における
の次数-10の近似を生成する:
sin = Normal@Series[Sin[x], {x, 0, 10}]AsymptoticGreater[sin, Sin[x] - sin, x -> 0]0におけるCot[x]の漸近級数を求める:
cot = Normal@Series[Cot[x], {x, 0, 5}]AsymptoticGreater[cot, Cot[x] - cot, x -> 0]Gamma[x]の級数が-1において漸近的であることを示す:
gamma = Normal@Series[Gamma[x], {x, -1, 2}]AsymptoticGreater[gamma, Gamma[x] - gamma, x -> -1]expr = Normal@Series[Log[Sin[x]]^1 / 3, {x, 0, 3}]AsymptoticGreater[expr, Log[Sin[x]]^1 / 3 - expr, x -> 0]近似される関数が近似点のすべての近傍で無限に何度も0に近付く場合は,漸近近似が微妙になるかもしれない.例として,
近くにおける
の漸近展開について考える:
besselJ = Normal@Series[BesselJ[1, x], {x, ∞, 2}]ベッセル関数のすべての零点において近似が完全に0にはならないので,この近似は漸近的ではない:
{BesselJ[1, x], besselJ} /. x -> BesselJZero[1, 25]//NLogPlot[Abs[(besselJ/besselJ - BesselJ[1, x])], {x, 1, 30}, PlotTheme -> "Detailed", PlotPoints -> 1000]一方,決して0にならないハンケル関数
の近似について考える:
hankel1 = Normal@Series[HankelH1[1, x], {x, ∞, 2}]//ExpandAsymptoticGreater[hankel1, HankelH1[1, x] - hankel1, x -> ∞]hankel2 = Normal@Series[HankelH2[1, x], {x, ∞, 2}]//ExpandAsymptoticLess[hankel2, HankelH2[1, x] - hankel2, x -> ∞]//Quiet
なので,そのような近似2つの和であるこの近似はほぼ漸近的であると理解できる:
FullSimplify[besselJ == (hankel1 + hankel2/2)]besselJP1 = Normal@Series[1 + BesselJ[1, x], {x, ∞, 2}]//ExpandAsymptoticGreater[besselJP1, 1 + BesselJ[1, x] - besselJP1, x -> ∞]LogPlot[Abs[(besselJP1/1 + BesselJ[1, x] - besselJP1)], {x, 1, 30}, PlotTheme -> "Detailed"]AsymptoticIntegrateを使って定積分の漸近近似を生成する.例えば,
のときの
の漸近近似を求め,厳密値と比較する:
{approx, exact} = {AsymptoticIntegrate[E ^ (t x), {t, 0, 1}, {x, 0, 3}] , Integrate[E ^ (t x), {t, 0, 1}]}AsymptoticGreater[approx, exact - approx, x -> 0]approx2 = AsymptoticIntegrate[E ^ (t x), {t, 0, 1}, {x, 0, 1}]AsymptoticGreater[approx2, exact - approx2, x -> 0]AsymptoticGreater[approx2, approx - approx2, x -> 0]積分定数を考慮に入れる必要があるが,AsymptoticIntegrateを使って不定積分の漸近近似を生成する.
のときの
の近似について考える:
{approx, exact} = {AsymptoticIntegrate[Sin[x], x, {x, 0, 3}], Integrate[Sin[x], x]}AsymptoticGreater[approx, exact - approx, x -> 0]approx2 = AsymptoticIntegrate[x^x, x, {x, 0, 2}]approx1 = AsymptoticIntegrate[x^x, x, {x, 0, 1}]比較すべき記号結果はないが,過程が漸近的であると示すことはできる:
AsymptoticGreater[approx1, approx2 - approx1, x -> 0]AsymptoticDSolveValueを使って微分方程式の漸近近似を生成する:
deqn = {y''[x] - (x ^ 4 + E ^ x Sin[x]) y[x] == 0 == 0, y[0] == 0, y'[0] == 2};approx = AsymptoticDSolveValue[deqn, y[x], {x, 0, 8}]比較すべき厳密結果はないが,過程が漸近的であると示すことはできる:
approx2 = AsymptoticDSolveValue[deqn, y[x], {x, 0, 12}]AsymptoticGreater[approx, approx2 - approx, x -> 0]NDSolveValueを使って得た数値解の値と比較する:
nsol = NDSolveValue[deqn, y[x], {x, 0, 0.5}]Table[nsol - approx2, {x, 0, 0.5, 0.1}]漸近尺度 (2)
関数列
は,
において
のときかつそのときに限り
において漸近尺度である.関数の有限リストが漸近尺度であるかどうかを確かめる関数を書く:
AsymptoticScaleQ[list_, x_ -> x0_, o : OptionsPattern[]] := BlockMap[AsymptoticGreater[#[[1]], #[[2]], x -> x0, o]&, list, 2, 1]AsymptoticScaleQ[{1 / x^3, 1 / x^2, 1 / x, 1, x, x ^ 2, x ^ 3}, x -> 0]AsymptoticScaleQ[{x^3, x^2, x, 1, (1/x), (1/x^2), (1/x^3)}, x -> ∞]AsymptoticScaleQ[{1, 1 / Log[x], 1 / Log[x]^2, 1 / Log[x]^3}, x -> ∞]AsymptoticScaleQ[{1, x, x^2 Log[x], x^2, x^3Log[x], x^3, x^4Log[x]}, x -> 0, Direction -> -1]Table[Exp[x]x^-α, {α, Sort[RandomReal[10, 5]]}]AsymptoticScaleQ[%, x -> ∞]AsymptoticSort[list_List, x_ -> x0_, o : OptionsPattern[]] :=
Sort[list, AsymptoticGreater[#2, #1, x -> x0, o]&]pows = RandomSample[Table[x^i, {i, -3, 3}]]AsymptoticSort[pows, x -> 0]LogPlot[Evaluate[Abs[%]], {x, -1 / 2, 1 / 2}, PlotLegends -> "Expressions"]AsymptoticSort[pows, x -> ∞]LogPlot[Evaluate[Abs[%]], {x, 10, 100}, PlotLegends -> "Expressions"]計算の複雑性 (4)
単純なソートアルゴリズム(バブルソート,挿入ソート)は n 個のオブジェクトをソートするのに約 a n2ステップを要する.これに対し,最適化された一般的アルゴリズム(ヒープソート,マージソート)はソートを行うのに約 b n Log[n]のステップを要する.大量のオブジェクトに対しては,最適化されたアルゴリズムの方が常にソート時間が短くて済むことを示す:
AsymptoticGreater[a n^2, b n Log[n], n -> ∞]ある種の特別なアルゴリズム(分布数え上げソート,基数ソート)は,考えられる入力についての情報が事前に分かっているので,c n 時間で実行することができる.使える場合には,これらの方が最適化アルゴリズムよりも速い:
AsymptoticGreater[b n Log[n], c n, n -> ∞]LogPlot[{n^2, n Log[n], n}, {n, 10, 1000}, PlotLegends -> "Expressions", PlotLabel -> Row[{n^2∈ω[n Log[n]], n Log[n]∈ω[n]}, Spacer[10]]]バブルソートでは,隣接近傍が比較され,順序が狂っている場合には入れ替えられる.1回のパス(n-1 回の比較)の後で最大要素が末尾になる.その後このプロセスは,先頭の2つの要素のみが残るまで,残りの n-1個の要素に対して繰り返される.比較と入替えが c ステップだとすると,ソートのステップ総数は次のようになる:
Sum[c(i - 1), {i, n, 2, -1}]AsymptoticGreater[(c n^2/2), (1/2) (-c n + c n^2) - (c n^2/2), n -> ∞]マージソートでは,要素のリストが2つに分割され,それぞれの半分がソートされてから,その2つの半分が結合される.であるから,ソート時間T[n]は中間を計算する一定の時間 b,各半分をソートする時間2T[n/2],2つの半分を結合するための要素数の倍数 a n の合計になる:
reqn = T[n] == 2T[n / 2] + a n + b再帰方程式を解いて n 個の要素をソートする時間 t を求める:
t = RSolveValue[reqn, T[n], n]//ExpandAsymptoticGreater[n(a Log[n]/Log[2]), t - n (a Log[n]/Log[2]), n -> ∞]巡回セールスマン問題(TSP)は
個の都市を繋ぐ最短経路を求めるものである.馬鹿正直なアルゴリズムは
通りの経路すべてを試そうとする.Held–Karpアルゴリズムは,それよりも効率よく約
ステップに短縮する.
であるからHeld–Karpアルゴリズムの方が速いことを示す:
AsymptoticGreater[n!, n ^ 2 2^n, n -> ∞]どちらのアルゴリズムも巡回セールスマン問題の複雑性クラスは,時間
で解ける問題のEXPTIMEと同じくらいであることを示している.Held–Karpアルゴリズムは,
について
を使うだけで十分である:
AsymptoticGreater[2^2n, n^2 2^n, n -> ∞]AsymptoticGreater[2^n^2, n!, n -> ∞]解の近似は
回で求まるので,巡回セールスマン問題の近似は多項式時間で可解な問題の複雑性クラスPに属する.どの多項式アルゴリズムも指数アルゴリズムよりも速い.つまり
である:
AsymptoticGreater[2^n, n^k, n -> ∞]特性と関係 (10)
AsymptoticGreaterは反射的ではない,つまり
である:
AsymptoticGreater[f[x], f[x], x -> x0]推移関係ではある.つまり,
かつ
なら
ということを意味する:
{f, g, h} = {x^3, x^2, x};{AsymptoticGreater[f, g, x -> ∞], AsymptoticGreater[g, h, x -> ∞], AsymptoticGreater[f, h, x -> ∞]}{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], AsymptoticGreater[g, f, x -> ∞]}Limit[Abs[f[x]/g[x]],xx0]∞のときかつそのときに限りAsymptoticGreater[f[x],g[x],xx0]である:
{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], Limit[Abs[f / g], x -> ∞]}{f, g} = {x^3 / (1 + x), x^2};{AsymptoticGreater[f, g, x -> ∞], Limit[Abs[f / g], x -> ∞]}{f, g} = {x Cos[x], Sin[x]};{AsymptoticGreater[f, g, x -> ∞], Limit[Abs[f / g], x -> ∞]}{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], AsymptoticGreaterEqual[f, g, x -> ∞]}{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], AsymptoticLess[g, f, x -> ∞]}{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], AsymptoticLessEqual[g, f, x -> ∞]}{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], Not@AsymptoticEquivalent[f, g, x -> ∞]}{f, g} = {x^2, x};{AsymptoticGreater[f, g, x -> ∞], Not@AsymptoticEqual[f, g, x -> ∞]}{f, g, h} = {x^2, x, x^2 / (1 + x)};{AsymptoticGreater[f, g, x -> ∞], AsymptoticGreaterEqual[g, h, x -> ∞], AsymptoticGreater[f, h, x -> ∞]}{f, g, h} = {x^2, x, x^2 / (1 + x)};{AsymptoticGreater[f, g, x -> ∞], AsymptoticEqual[g, h, x -> ∞], AsymptoticGreater[f, h, x -> ∞]}{f, g, h} = {x^2, x, x^2 / (1 + x)};{AsymptoticGreater[f, g, x -> ∞], AsymptoticEquivalent[g, h, x -> ∞], AsymptoticGreater[f, h, x -> ∞]}関連するガイド
-
▪
- 漸近解析
テキスト
Wolfram Research (2018), AsymptoticGreater, Wolfram言語関数, https://reference.wolfram.com/language/ref/AsymptoticGreater.html.
CMS
Wolfram Language. 2018. "AsymptoticGreater." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/AsymptoticGreater.html.
APA
Wolfram Language. (2018). AsymptoticGreater. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/AsymptoticGreater.html
BibTeX
@misc{reference.wolfram_2026_asymptoticgreater, author="Wolfram Research", title="{AsymptoticGreater}", year="2018", howpublished="\url{https://reference.wolfram.com/language/ref/AsymptoticGreater.html}", note=[Accessed: 19-August-2026]}
BibLaTeX
@online{reference.wolfram_2026_asymptoticgreater, organization={Wolfram Research}, title={AsymptoticGreater}, year={2018}, url={https://reference.wolfram.com/language/ref/AsymptoticGreater.html}, note=[Accessed: 19-August-2026]}