how to list a scheme all elements?
A = AffineSpace(2, GF(3,2))
show(A);
A.rational_points()
show(A.coordinate_ring())
show(A.base_scheme())
A.base_scheme().list()
I want list A.base_scheme Spectrum all elements
What do you mean by "elements" of a spectrum ? The prime ideals ? The rational points ?
The prime ideals
You know that there are infinitely many of them ? You can not do a list! And if the base scheme is a field, you have only one prime ideal.
yes,I know base scheme is a field ,there ave only one prime ideal,I want know hot to list it? if base scheme is a finite ring for A = AffineSpace(2, Zmod(17)) hot to list it prime Spectrum elements?