Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question
1

Make program act on itself by entering certain areas of code (as a string) which it must itself execute

asked 4 years ago

Pérez Broon gravatar image

updated 4 years ago

slelievre gravatar image

My program must act on itself by entering certain areas of code (in the form of a string) which it must itself execute.

Take the ring K of polynomials with four unknowns x_00, x_10, x_01 and x_11.

K.<x_00, x_10, x_01, x_11> = QQ []
g = K.random_element()
for i in range(1):
    for j in range(1):
         2 + g.monomial_coefficient(x_ij)

The last command tries to add to 2 the coefficient of the monomial x_ij. This is where it blocks.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

slelievre gravatar image

updated 4 years ago

Apply a map to all coefficients of a polynomial

To apply a map to all coefficients of a polynomial, use map_coefficients.

For example, say we want to add two to each coefficient.

The function xx+2 is denoted in Python by lambda x: x + 2.

sage: K.<x_00, x_10, x_01, x_11> = QQ []
sage: g = K.random_element()
sage: g
7/18*x_00*x_01 + 51*x_00*x_11 - 126*x_01*x_11 - x_10
sage: g.map_coefficients(lambda x: x + 2)
43/18*x_00*x_01 + 53*x_00*x_11 - 124*x_01*x_11 + x_10

In this case, 7/18 became 43/18, 51 became 53, -126 became -124, and -1 became +1.

Note that this works around the question.

Accessing monomial xij for given i and j

For this, use string formatting. For instance:

sage: i = 0
sage: j = 1
sage: K(f'x_{i}{j}')
x_01
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: 4 years ago

Seen: 475 times

Last updated: Jul 12 '20