Symbolic Integration problem with respect to a variable

6 ビュー (過去 30 日間)
Waleed El-Badry
Waleed El-Badry 2015 年 8 月 3 日
コメント済み: Walter Roberson 2015 年 8 月 3 日
Hi, I wrote a simple script to calculate symbolic integration of multivariable with respect to "t" as below:
clear all
% Symbols in equation
syms c L Bita Gamma Eita t w a
% Function to be integrated
f=((Gamma*t/Eita)^(Bita-1))*(exp((Gamma*t/Eita)^Bita)*(a^(-t))-(t/w)*...
((Gamma*t/Eita)^(Bita-1))*(exp((Gamma*t/Eita)^Bita)*(a^(-t))));
f2=((Gamma*t/Eita)^(Bita-1))*(exp((Gamma*t/Eita)^Bita)*(a^(-t))*(1-(t/w)));
% Calculate the integral
R=(c*L*Bita)*(Gamma/Eita)*int(f,t,[0,w]);
R2=(c*L*Bita)*(Gamma/Eita)*int(f2,t,[0,w]);
The problem is result R and R2 are the same as the expression !
Your help is much appreciated.

回答 (1 件)

Sean de Wolski
Sean de Wolski 2015 年 8 月 3 日
Scroll down to the "Tips" section. Either int cannot find a solution or none exist.
  1 件のコメント
Walter Roberson
Walter Roberson 2015 年 8 月 3 日
Even if you substitute in exact numeric values for all of the symbolic variables except t, you are unlikely to arrive at a formula that has a closed form solution. There might be some special cases with some of the constants being 0 perhaps.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by