Ask Your Question

arneovi's profile - activity

2021-09-27 14:34:15 +0200 commented answer Weird c-values from solving system of equations

@dsejas I thought the r-variable is the standard parameter? Running this : a_1, a_2, b_1, b_2 = var('a_1, a_2, b_1, b_

2021-09-26 22:25:32 +0200 received badge  Student (source)
2021-09-23 14:24:24 +0200 commented answer Weird c-values from solving system of equations

Thank you! I thought maybe it was parameters but was confused since I thought the "r" variables were parameters, like fo

2021-09-23 14:15:04 +0200 marked best answer Weird c-values from solving system of equations

Here is the issue:

sage: a_1, a_2, b_1, b_2 = var('a_1 a_2 b_1 b_2')                               
sage: eq1 = a_1 * a_2^2 - a_2 * a_1^3 == 0                                      
sage: eq2 = 2*a_1*a_2*b_2 + b_2*a_2^2 - 3*a_2*a_1^2*b_1 - a_1*b_2               
sage: eq3 = a_2^3 - a_2^2*a_1^2                                                 
sage: eq4 = 3*a_2^2*b_2 - 2*a_2*a_1^2*b_2 - 2*a_2^2*b_1                         
sage: solve([eq1, eq2, eq3, eq4], a_1, a_2, b_1, b_2)                           
[[a_1 == 0, a_2 == 0, b_1 == c2439, b_2 == c2440], [a_1 == c2441, a_2 == 0, b_1 == c2442, b_2 == 0], [a_1 == c2443, a_2 == c2443^2, b_1 == 0, b_2 == 0]]

im getting these weird c2439 and c2440 solutions, are they just arbitrary complex numbers? Shouldn't they rather be prefixed with 'r' in that case? Can anyone tell me what these c-values are?

2021-09-23 14:15:04 +0200 received badge  Scholar (source)
2021-09-17 07:18:16 +0200 asked a question Weird c-values from solving system of equations

Weird c-values from solving system of equations sage: a_1, a_2, b_1, b_2 = var('a_1 a_2 b_1 b_2') sage: eq1 = a_1 * a_2