1 | initial version |
Hello,
I tried a different way of doing the same. In the code below, eq1 is the circle and eq2 is the parabola. You'll the solution you are looking for.
x, y = var('x, y');
eq1 = x^2 + y^2 == 16; show(eq1);
eq2 = y == 1/4*x^2-1.28; show(eq2);
eqs = [eq1, eq2];
sol = solve(eqs, x, y); show(sol);
Hope this helped.
2 | No.2 Revision |
Hello,
I tried a different way of doing the same. In the code below, eq1 is the circle and eq2 is the parabola. You'll find the solution you are looking for.
x, y = var('x, y');
eq1 = x^2 + y^2 == 16; show(eq1);
eq2 = y == 1/4*x^2-1.28; show(eq2);
eqs = [eq1, eq2];
sol = solve(eqs, x, y); show(sol);
Hope this helped.