
No.5
- 回答日時:
定積分の下限や上限に、未定義になる可能性のある文字定数(積分変数と異なる文字変数を含む)とき、同様のエラーが起こります。
未定義となる可能性がないことがないと分かっている場合は、以下のように、まず定積分を行い、それに積分の上限、下限を代入して引き算をしてやれば対処できます。
例)
fx:integrate(x,x)$
I:ev(fx,x=y)-ev(x=sqrt(y);
このように定積分の上限や下限が原因で積分エラーが起こる場合は、この方法で対処できます。
やってみて下さい。
ありがとうございます。さっそく行ってみます。こんなやり方もあるのかと色々参考になります。やり始めたばかりですので、わからないことだらけです。大変参考になります。
No.4
- 回答日時:
integrate(x,x,sqrt(abs(y)),y);
とすればよいのでは?
このサイトでは表示が壊れますが下の様になります
(%i6) integrate(x,x,sqrt(abs(y)),y);
2
y abs(y)
(%o6) -- - ------
2 2
(%i7)
なんども恐縮です。返答が遅れて申し訳ありません。一応行っていたのはサイト上に落ちている簡単なテキストに書かれたものから片っぱしに行っているので、細かい部分の補足が抜けているようです。1つの計算でもいくつもやり方があるのですね。ただ、絶対値を取るのは計算はできるとは思いますが、正しくないかもしれないと抵抗があるので、別の方法を模索します。
No.3
- 回答日時:
例示しているように
describe(integrate);
の間違いでした
Examples:
* Elementary indefinite and definite integrals.
(%i1) integrate (sin(x)^3, x);
3
cos (x)
(%o1) ------- - cos(x)
3
(%i2) integrate (x/ sqrt (b^2 - x^2), x);
2 2
(%o2) - sqrt(b - x )
(%i3) integrate (cos(x)^2 * exp(x), x, 0, %pi);
%pi
3 %e 3
(%o3) ------- - -
5 5
(%i4) integrate (x^2 * exp(-x^2), x, minf, inf);
sqrt(%pi)
(%o4) ---------
2
* Use of `assume' and interactive query.
(%i1) assume (a > 1)$
(%i2) integrate (x**a/(x+1)**(5/2), x, 0, inf);
2 a + 2
Is ------- an integer?
5
no;
Is 2 a - 3 positive, negative, or zero?
neg;
3
(%o2) beta(a + 1, - - a)
2
* Change of variable. There are two changes of variable in this
example: one using a derivative established by `gradef', and
one using the derivation `diff(r(x))' of an unspecified
function `r(x)'.
(%i3) gradef (q(x), sin(x**2));
(%o3) q(x)
(%i4) diff (log (q (r (x))), x);
d 2
(-- (r(x))) sin(r (x))
dx
(%o4) ----------------------
q(r(x))
(%i5) integrate (%, x);
(%o5) log(q(r(x)))
* Return value contains the `'integrate' noun form. In this
example, Maxima can extract one factor of the denominator of
a rational function, but cannot factor the remainder or
otherwise find its integral. `grind' shows the noun form
`'integrate' in the result. See also `integrate_use_rootsof'
for more on integrals of rational functions.
(%i1) expand ((x-4) * (x^3+2*x+1));
4 3 2
(%o1) x - 4 x + 2 x - 7 x - 4
(%i2) integrate (1/%, x);
/ 2
[ x + 4 x + 18
I ------------- dx
] 3
log(x - 4) / x + 2 x + 1
(%o2) ---------- - ------------------
73 73
(%i3) grind (%);
log(x-4)/73-('integrate((x^2+4*x+18)/(x^3+2*x+1),x))/73$
* Defining a function in terms of an integral. The body of a
function is not evaluated when the function is defined. Thus
the body of `f_1' in this example contains the noun form of
`integrate'. The quote-quote operator `''' causes the
integral to be evaluated, and the result becomes the body of
`f_2'.
(%i1) f_1 (a) := integrate (x^3, x, 1, a);
3
(%o1) f_1(a) := integrate(x , x, 1, a)
(%i2) ev (f_1 (7), nouns);
(%o2)
No.2
- 回答日時:
どういう計算をしようとしているのでしょうか?
topic(integrate);
を入力してみてください
(%i2) describe(integrate);
-- Function: integrate (<expr>, <x>)
-- Function: integrate (<expr>, <x>, <a>, <b>)
Attempts to symbolically compute the integral of <expr> with
respect to <x>. `integrate (<expr>, <x>)' is an indefinite
integral, while `integrate (<expr>, <x>, <a>, <b>)' is a definite
integral, with limits of integration <a> and <b>. The limits
should not contain <x>, although `integrate' does not enforce this
restriction. <a> need not be less than <b>. If <b> is equal to
<a>, `integrate' returns zero.
See `quad_qag' and related functions for numerical approximation
of definite integrals. See `residue' for computation of residues
(complex integration). See `antid' for an alternative means of
computing indefinite integrals.
The integral (an expression free of `integrate') is returned if
`integrate' succeeds. Otherwise the return value is the noun form
of the integral (the quoted operator `'integrate') or an
expression containing one or more noun forms. The noun form of
`integrate' is displayed with an integral sign.
In some circumstances it is useful to construct a noun form by
hand, by quoting `integrate' with a single quote, e.g.,
`'integrate (<expr>, <x>)'. For example, the integral may depend
on some parameters which are not yet computed. The noun may be
applied to its arguments by `ev (<i>, nouns)' where <i> is the
noun form of interest.
`integrate' handles definite integrals separately from indefinite,
and employs a range of heuristics to handle each case. Special
cases of definite integrals include limits of integration equal to
zero or infinity (`inf' or `minf'), trigonometric functions with
limits of integration equal to zero and `%pi' or `2 %pi', rational
functions, integrals related to the definitions of the `beta' and
`psi' functions, and some logarithmic and trigonometric integrals.
Processing rational functions may include computation of residues.
If an applicable special case is not found, an attempt will be
made to compute the indefinite integral and evaluate it at the
limits of integration. This may include taking a limit as a limit
of integration goes to infinity or negative infinity; see also
`ldefint'.
Special cases of indefinite integrals include trigonometric
functions, exponential and logarithmic functions, and rational
functions. `integrate' may also make use of a short table of
elementary integrals.
`integrate' may carry out a change of variable if the integrand
has the form `f(g(x)) * diff(g(x), x)'. `integrate' attempts to
find a subexpression `g(x)' such that the derivative of `g(x)'
divides the integrand. This search may make use of derivatives
defined by the `gradef' function. See also `changevar' and
`antid'.
If none of the preceding heuristics find the indefinite integral,
the Risch algorithm is executed. The flag `risch' may be set as
an `evflag', in a call to `ev' or on the command line, e.g., `ev
(integrate (<expr>, <x>), risch)' or `integrate (<expr>, <x>),
risch'. If `risch' is present, `integrate' calls the `risch'
function without attempting heuristics first. See also `risch'.
`integrate' works only with functional relations represented
explicitly with the `f(x)' notation. `integrate' does not respect
implicit dependencies established by the `depends' function.
`integrate' may need to know some property of a parameter in the
integrand. `integrate' will first consult the `assume' database,
and, if the variable of interest is not there, `integrate' will
ask the user. Depending on the question, suitable responses are
`yes;' or `no;', or `pos;', `zero;', or `neg;'.
`integrate' is not, by default, declar
お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!
似たような質問が見つかりました
- 数学 積分計算 3 2023/07/31 16:29
- 統計学 生物統計学の質問 7 2022/05/17 13:59
- スペイン語 急にあるサイトが見れなくなりました。 6 2022/03/28 09:33
- その他(プログラミング・Web制作) python fbprophetについて 1 2022/09/29 19:44
- Visual Basic(VBA) VBAで時間(00:00形式)を積算(足し算)したい 1 2022/11/15 17:04
- Java javaの質問です 次の機能を有するメソッド4つを自クラスに作成し、実装したいです 【機能】 足し算 1 2022/06/15 17:49
- MySQL 参考書に従って入力したつもりでしたが、最後はエラーがでました。 1 2022/09/28 03:45
- Excel(エクセル) エクセルでIF関数中にIFERROR関数を使いたいのですが???? 5 2022/04/08 13:24
- Gmail 【お助け!】サーバーからのメール送信でGmailに送信されない問題について 1 2023/06/20 22:03
- Java java 飾子を付けること(public static・・・) ・コンソールへの出力処理はmainメ 2 2022/06/16 19:34
このQ&Aを見た人はこんなQ&Aも見ています
おすすめ情報
このQ&Aを見た人がよく見るQ&A
デイリーランキングこのカテゴリの人気デイリーQ&Aランキング
-
積分の数式を声に出して読むと...
-
e^f(x)の積分の仕方
-
周曲線の積分記号の意味について
-
e^(x^2)の積分に関して
-
部分積分の積分定数
-
複素積分
-
積分の問題
-
∫[2.0](2x+1)^3dxはいくつにな...
-
不定積分∫log(1+x)/x dxが分か...
-
定積分・不定積分の式の読み方
-
2乗可積分関数とは何でしょうか?
-
積分の偶関数奇関数は、xの累乗...
-
なぜ部分積分をする時に、∮2x(x...
-
有限までのガウス積分
-
(x^3/√(x^2+1))の不定積分
-
周期が2πの以下の関数のフーリ...
-
閉曲線内の領域Dに特異点がある...
-
x^2分の1の積分について
-
数学「積分」 2つ,3つの関数か...
-
e^(ax)の微分と積分
マンスリーランキングこのカテゴリの人気マンスリーQ&Aランキング
-
積分の数式を声に出して読むと...
-
e^(x^2)の積分に関して
-
0の積分
-
高校の数学で積分できない関数
-
積分の問題
-
積分のパソコン上のの表し方...
-
exp(ikx)の積分
-
定積分=0という場合、積分され...
-
積分においてxはtに無関係だか...
-
不定積分∫log(1+x)/x dxが分か...
-
1/x は0から1の範囲で積分でき...
-
数学IIの積分の面積の公式につ...
-
【数学】積分の音符みたいなマ...
-
インテグラル∫とdxについて
-
cosx/xの積分の値について
-
この問題のように積分変数でな...
-
e^(-x^2)の積分
-
積分 e^sinx
-
有限までのガウス積分
-
2乗可積分関数とは何でしょうか?
おすすめ情報