Processing math: 100%
Ask Your Question
1

Evaluation map and ideal from polynomial ring K[X] -> K

asked 2 years ago

narodnik gravatar image

updated 2 years ago

How can I define a localized evaluation map ϕa1,,an:K[x1,,xn]K by ϕa1,,an(p(x1,,xn))=p(a1,,an)?

K = GF(47)
R.<x, y> = K[]
H = R.hom_eval(K(10), K(20))
assert H((x - 10)*(y - 20)) == 0

And also how can I construct the ideal of this map?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 2 years ago

Max Alekseyev gravatar image

updated 2 years ago

This seems to do the job:

H = R.hom([K(10),K(20)])
Preview: (hide)
link

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 2 years ago

Seen: 252 times

Last updated: Aug 02 '22