Unable to find explicit solution
이전 댓글 표시
syms y b a x c d f
eqn = b+(a*log(y/x))==c+(d*log((1-y)/f));
soly = solve(eqn, y)
Warning: Unable to find explicit solution. For options, see help.
> In solve (line 317)
In Plotting (line 30)
soly =
Empty sym: 0-by-1
What is wron with my code
댓글 수: 4
G A
2021년 12월 4일
you have equation of type
y/(1-y)^A=B
which does not have an explicit solution for any A, but you can try with integer A
seema redhu
2021년 12월 5일
is it OK as follows?
syms y a b c d f x A B
n=2;
d = n*a
A = d/a
y = solve(y/(1-y)^A==B,y)
B = (x/f^A)*exp((c - b)/a);
답변 (2개)
seema redhu
2021년 12월 6일
댓글 수: 1
Walter Roberson
2022년 1월 10일
Maple thinks that 3.33507942113645790766889887448*10^(-304) might be a solution.
Your equation with actual ratio a4/a3 does not have analytical solution. Try to solve it numerically with some tolerance.
카테고리
도움말 센터 및 File Exchange에서 Number Theory에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
