Ask Your Question
2

Complex argument of an algebraic number

asked 2012-11-02 12:42:21 +0200

MvG gravatar image

updated 2020-06-01 11:33:53 +0200

FrédéricC gravatar image

This question is closely related to that question here. Basically I'd like to know whether there is a way to compute an accurate symbolic expression for the argument of an algebraic number.

That argument will in general not be an algebraic number itself, which seems to cause a lot of headache along the way. The following all fail, sometimes in rather spectacular backtracing ways:

sage: z = QQbar(3 + 2*I)
sage: z.arg()
AttributeError: 'AlgebraicNumber' object has no attribute 'arg'
sage: atan2(imag(z), real(z))
TypeError: Illegal initializer for algebraic number
sage: atan2(SR(imag(z)), SR(real(z)))
TypeError: Illegal initializer for algebraic number
sage: atan2(AA(imag(z)), AA(real(z)))
TypeError: Illegal initializer for algebraic number

I know a few cases which will work.

sage: atan2(QQ(imag(z)), QQ(real(z)))
arctan(2/3)

This however will break if the real or imaginary part were to contain any square roots.

sage: CC(z).arg()
0.588002603547568

This will give me a numeric approximation. I know I can get that approximation to arbitrary precision, but it's still not exact.

I have the impression that atan2 attempts to turn its result into an algebraic number, which will fail horribly. I would expect that result to contain an unevaluated call to atan2 instead, for the cases where the argument is not an algebraic number. Can this be done?

edit retag flag offensive close merge delete

Comments

What do you want to do with these numbers?

vdelecroix gravatar imagevdelecroix ( 2016-01-05 03:05:49 +0200 )edit

I honestly don't remember what I had in mind when I posted this question. I guess I worked around it somehow, or tried a completely different approach.

MvG gravatar imageMvG ( 2016-05-27 01:25:45 +0200 )edit

1 Answer

Sort by » oldest newest most voted
1

answered 2017-11-12 20:38:43 +0200

Emmanuel Charpentier gravatar image

Well...

sage: z=QQbar(3+2*i);z
2*I + 3
sage: arg(z)
arctan(0.6666666666666667?)

Note the "?" printed at the end of the decimal approximation. That means that this number is "exact", in the sense that this "quantity" represents an algorithm able to approximate the underlying complex to any precision. At least, that's what Sage says :

sage: arg(z).is_exact()
True

Note that, while there exists a radical expression for z (the original 3+2*i), there cannot be one for arctan(z)`, unless this one happens to be _known_ to be rational, in which case it can be coerced to be rational and a radical expression can be searched. As far as Sage can say, this is not the case...

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2012-11-02 12:42:21 +0200

Seen: 816 times

Last updated: Nov 12 '17