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
We came across an issue in which when algebrite tries to calculate i raised to a power "n" such as n%4 = 1 and n>1, it evaluates it incorrectly
Examples:
In reality, i^5 = i^2 * i^2 * i = -1 * -1 * i = 1* i = i Same goes for i^9
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We came across an issue in which when algebrite tries to calculate i raised to a power "n" such as n%4 = 1 and n>1, it evaluates it incorrectly
Examples:
In reality, i^5 = i^2 * i^2 * i = -1 * -1 * i = 1* i = i
Same goes for i^9
The text was updated successfully, but these errors were encountered: