Int() returning incorrect answer
5 ビュー (過去 30 日間)
古いコメントを表示
I need to solve a double integral, using symbolic variables. My code is as follows:
stiff = transpose(B)*E*B*t*detJ;
K = int(int(stiff,zeta,-1,1),eta,-1,1)
where zeta and eta have been defined as symbolic variables and stiff is an 8x8 matrix.
I have been given the precise answers, so I know that everything leading up to the K calculation is correct. However, K doesn't match at all. Does anyone have insight on why the integral isn't correct?
2 件のコメント
Walter Roberson
2022 年 11 月 26 日
The stiff variable you show us does not depend on zeta or eta so there is not much to go wrong...
採用された回答
Walter Roberson
2022 年 11 月 26 日
Especially in the case of trig expressions or expressions that integrate to trig (such as ones that integrate to arctan), then int() is permitted to return any mathematically equivalent expression. You should subtract the returned expression from the known answer and evaluate at several points to determine whether the expressions are equivalent.
For example if you integrate sin() you will not necessarily get back an expression in cos: you might get back something based on the fact that sin-squared plus cos-squared equals 1.
1 件のコメント
Steven Lord
2022 年 11 月 27 日
Instead of evaluating at several points to do a probabilistic equivalence test, I recommend using the isAlways function.
syms x
f1 = sin(2*x)
f2 = 2*sin(x)*cos(x)
isAlways(f1 == f2)
f3 = cos(x).^2-sin(x).^2 % cos(2*x)
f4 = cos(2*x)
isAlways(f1 == f3)
isAlways(f3 == f4)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Assumptions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
