Solve t^(a*x^2+b*x+c)=s - MATLAB Cody - MATLAB Central

Problem 43590. Solve t^(a*x^2+b*x+c)=s

Difficulty:Rate

Solve t^(a*x^2+b*x+c)=s. Return x vector as result.

Example a=1, b=2, c=1, t=3, s=15. Result x(1)= 0.5700 x(2)=-2.5700

Hint: if we need to solve a*x^2+b*x+c=0 then result will be

x(1)=(-b+sqrt(b^2-4*a*c))/(2*a);

x(2)=(-b-sqrt(b^2-4*a*c))/(2*a);

Solution Stats

39.57% Correct | 60.43% Incorrect
Last Solution submitted on Nov 30, 2024

Problem Comments

Solution Comments

Show comments
MATLAB EXPO 2025 Registration is Now Open! November 12 – 13, 2025
Registration is now open for MathWorks annual virtual event MATLAB EXPO 2025...
0

Problem Recent Solvers60

Suggested Problems

More from this Author37

Problem Tags

Community Treasure Hunt

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

Start Hunting!