We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solve
a^(b/x) == c
The current implementation of Solve is able to solve the following equation:
Solve(a^(b/x) == c, x)
{{ x -> b * Log[a] / Log[c] }}
But after replacing a, b, and c with integers, the Solve function got stuck forever:
a
b
c
Solve(2^(1250000/x) == 500, x)
The text was updated successfully, but these errors were encountered:
The big exponent seems to be the problem?
Solve(2^(100/x) == 500, x) gives a resuclt
Solve(2^(100/x) == 500, x)
Sorry, something went wrong.
OK I will check.
WIP #947: Factor: check if degree is <= Config.MAX_POLYNOMIAL_DEGREE
ac0a4a0
Thanks for the quick fix.
The Solve is able to solve the equation:
Solve(13000*50/534803==(1+6/125/360)^(360*m),m)
But after moving the constant 50/534803 to the right side of equation, it does not work:
50/534803
Solve(13000==534803/50*(1+6/125/360)^(360*m),m)
No branches or pull requests
The current implementation of
Solve
is able to solve the following equation:But after replacing
a
,b
, andc
with integers, theSolve
function got stuck forever:The text was updated successfully, but these errors were encountered: