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
Algebrite is currently unable to solve polynomial equations involving fractions, such as this one: roots(3 x + (12 + y)/x = 24)
roots(3 x + (12 + y)/x = 24)
But it finds a solution if I re-factor the equation, like this:
roots(3 x*x + 12 + y = 24*x)
Why is Algebrite able to solve the second equation, but not the first one?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Algebrite is currently unable to solve polynomial equations involving fractions, such as this one:
roots(3 x + (12 + y)/x = 24)
But it finds a solution if I re-factor the equation, like this:
roots(3 x*x + 12 + y = 24*x)
Why is Algebrite able to solve the second equation, but not the first one?
The text was updated successfully, but these errors were encountered: