hypergeom equation can't be solved

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);
Warning: Unable to find explicit solution. For options, see help.
disp(solution);
-> Warning: Unable to find explicit solution. For options, see help.
is there a way to solve this?

댓글 수: 2

Dyuman Joshi
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
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
Sufiyan 2024년 2월 26일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

질문:

2024년 2월 8일

댓글:

2024년 2월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by