-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
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
nthroot function #47565
Comments
It seems that hermitian matrices should also have a compatible EDIT: The discussion on discourse makes me think that we might actually want to provide a more general version of |
I would think that there should be an In principle, I agree that there might be a place for a Alternatively, we could just have a method |
I suppose triangular matrices with real diagonals also have real eigenvalues. So hermitian and real-diagonal triangular matrices are on the list. What other structures give rise to real eigenvalues? I don't know that I'd support having general matrices support such a function, since that could require hoping that numerical evaluation supports a Can you elaborate on the distinction between |
I think the problem is more that reducing the fraction changes the answer. E.G.
|
Those two examples both have negative bases and even-denominator powers, so would result in |
Can I work on this? |
@Snimm, I think we need to first decide whether we want It sounds like people are leaning towards
Or maybe we should have both? Or just start with |
I'd start with nthroot |
what about making the cbrt function . if we use nthroot then cbrt will be less efficient . And the whole purpose of this issue was for writing cbrt function (kinda) |
we already have cbrt. |
my mistake cbrt(A::AbstractMatrix{<:Real}) |
Ultimately I think that having both makes sense. But implementation can be tackled starting with |
The established-ness of Unless someone develops something profoundly more clever than the proposed implementation, the implementations are essentially identical so this feels rather wasteful. Meanwhile, there are some quantities that cannot be computed using just julia> (nextfloat(1.0)^(1//3))^10 # catastrophic loss of precision
1.0
julia> nextfloat(1.0)^(10//3)
1.0000000000000007
julia> (1e50^10)^(1//3) # overflow
Inf
julia> 1e50^(10//3)
4.641588833612859e166 Even once a viable order is decided, it still won't be faster or more accurate than the single exponentiation used in Julia made the deliberate choice not to include the P.S. |
The only languages I can find with So maybe we should just go with realpow(x::Real, p::Rational) =
isodd(p.den) || x ≥ 0 ? copysign(abs(x)^p, x) :
throw(DomainError("Exponentiation yielding a complex result requires a complex argument. Replace realpow(x, p) with complex(x)^p.")) (There is the question of what to do with |
An issue with the name But |
The point is that The matrix case is tricky (#47513) and I'm not sure that should be our main concern here. (For example, any real matrix has a real nth root when n is odd, which in my mind is a much more interesting use-case than applying this to complex-Hermitian matrices. The algorithms in the non-Hermitian matrix case are much harder, however, just as for matrix exponentials and square roots.) |
What about the name nthroot but with a three argument method that computes a rational power? |
Sure, why not. |
I imagine the majority use of this function will, in practice, be to compute roots rather than general powers. So with that in mind I could live with |
Would it be If feels unfortunate to use one or two integers and argument order conventions to represent a rational rather than passing in an integer or rational directly. |
Fwiw, I have a lot of trouble forcing my brain to parse nthroot as something else than n throot, and then I wonder what a throot is. I imagine it's even more confusing for people who are not very familiar with English. Realpow is a much better name. |
The big problem I have with |
I can work on this one. Can anyone assign this to me? I have good idea of what to do here. |
Where did you write that? If it's inside the |
@giordano Ya its in |
use Revise. you can just |
…ang#47565. One minor fix needed.
@oscardssmith Ya I need to read docs properly 😥. I will see how to do that. Can you check the Draft PR and give suggestions? Also is my function exported correctly? PS: Thanks a bunch mate :) |
Thanks! There are some tricky unresolved design decisions here which we will need to resolve before merging a PR, so this might not be the best first issue. Nevertheless, you are certainly welcome to make a PR! You don't have to be assigned to an issue to contribute a PR addressing it.
It would be easier to find if you linked it with |
Don't worry I got this now
Can you comment more specifically with regards to my Draft PR (#47860)? What changes are needed in the function I wrote? |
…ented for complex and real numbers.
@stevengj I am interested to work on this,but based on the discussions and work above I am quite confused what to implement realpow or nthroot , for Real + Complex numbers or only for Real, Can you please guide me a bit. |
See my comment here: #47860 (comment) I think it's pretty clear that we want something only for |
@oscardssmith mentioned on discourse that IEEE 2018 recommends an
nthroot(x, n)
that computes the real nth-root of a realx
, similar to the Matlab functionnthroot
and generalizingcbrt
.A possible implementation could be as simple as:
though it's possible that we could have faster/more-accurate implementations in some special cases.
As discussed in #36534, it probably only makes sense to define this for
x::Real
arguments.The text was updated successfully, but these errors were encountered: