Definite intergral with one variable trying to solve for constant
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (1)
Steven Lord
am 4 Jan. 2021
Bearbeitet: Steven Lord
am 4 Jan. 2021
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])
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
