what meanings about global_height of AffineSpace'point
P.<x,y>=AffineSpace(QQ,2) Q=P(41,1/12) Q.global_height()
asked 2014-10-21 12:26:18 +0100
This post is a wiki. Anyone with karma >750 is welcome to improve it.
P.<x,y>=AffineSpace(QQ,2) Q=P(41,1/12) Q.global_height()
Hello,
If you want a mathematical answer, be clear that it is what you want. There is not even a sentence in your post!!
Given a rational p/q you can define its height to be max(log(|p|), log(|q|)). And given a vector, you can define its height as the maximum of the heights of its entries...
sage: A = AffineSpace(2,QQ)
sage: A((1/3,2/5))
(1/3, 2/5)
sage: A((1/3,2/5)).global_height()
1.60943791243410
sage: log(5.)
1.60943791243410
The definition extends to number fields.
Vincent
answered 2014-10-21 13:04:52 +0100
This post is a wiki. Anyone with karma >750 is welcome to improve it.
thank you very much! it is the same with ellipitic curve!
Please, do *not* post comments as an answer. There is the possibility to add comments in the question and in each answer.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2014-10-21 12:26:18 +0100
Seen: 186 times
Last updated: Oct 21 '14
What is your question ?! If you want an answer, you should be more precise.
I only know ellipitic curve'point has a height,what meanings AffineSpace'point height?