hypergeom equation can't be solved
1 次查看(过去 30 天)
显示 更早的评论
syms A B Z k w;
equation = hypergeom(A+1,B+1,Z)/hypergeom(A,B,Z) == 0.5 - k/(2*(w-1)*A);
solution = solve(equation, Z);
disp(solution);
-> Warning: Unable to find explicit solution. For options, see help.
is there a way to solve this?
2 个评论
Dyuman Joshi
2024-2-8
编辑:Dyuman Joshi
2024-2-8
"is there a way to solve this?"
Not for symbolic variables. You might get a solution if you provide values for other variables.
Walter Roberson
2024-2-26
Maple is able to convert the hypergeom(A+1,B+1,Z)/hypergeom(A,B,Z) part into
-LaguerreL(-A-1,B,Z)*B/LaguerreL(-A,B-1,Z)/A
... But that doesn't seem to help much.
回答(1 个)
Sufiyan
2024-2-26
No, If you are looking to solve this numerically for specific values of A, B, k, and w, you would need to use numerical methods and provide those values.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!