Definite intergral with one variable trying to solve for constant
古いコメントを表示
The problem is i have this definite integral which i need to integrate and then solve for P:
F = P*x^2-5000*x^3/((x/26 + 1/10)^3/300 - (x/26 + 23/250)^3/375)
between the limits of 0 and 2.6 but i am unsure on how to get it to solve for P.
syms x P
F = P*x^2-5000*x^3/((x/26 + 1/10)^3/300 - (x/26 + 23/250)^3/375);
Fint = int(F, x, 0, 2.6)
So, integrate the function between 0 and 2.6 with x being the varible to get an answer for P?
Any help will be much apprieciated
採用された回答
その他の回答 (1 件)
Let's look at what your function looks like on the interval [0, 2.6] when P is 8000.
F = @(x, P) P*x.^2-5000*x.^3./((x/26 + 1/10).^3/300 - (x/26 + 23/250).^3/375);
fplot(@(x) F(x, 8000), [0, 2.6])
カテゴリ
ヘルプ センター および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
