You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sage: R.<x> = QQ[]
sage: K.<a> = NumberField(x^2 + x - 24)
sage: E = EllipticCurve('37a')
sage: X = E(K)
sage: P = X([3, a])
sage: P in X
False
sage: P.parent() == X
False
This is related to the fact that K is not the base field QQ of the curve, and we do get the correct output for points over QQ: