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
Implement the power(X, N) predicate, where X is an interval and N is a number, calculating thus X^N.
X
N
X^N
The definition of this can be found in Shary2021 page 40, and it is pretty much defined as the N-times multiplication of X with itself:
X^N = X*X*...*X, N times.
X^N = X*X*...*X
This should be calculated recursively:
X^N = X*X^(N-1).
X^N = X*X^(N-1)
The text was updated successfully, but these errors were encountered:
mlliarm
No branches or pull requests
Implement the power(X, N) predicate, where
X
is an interval andN
is a number, calculating thusX^N
.The definition of this can be found in Shary2021 page 40, and it is pretty much defined as the N-times multiplication of X with itself:
X^N = X*X*...*X
, N times.This should be calculated recursively:
X^N = X*X^(N-1)
.The text was updated successfully, but these errors were encountered: