I would like to use SageMath to solve some equations of combined/composite curves. However, I did not find a way to solve even a simple parabola so far. Here is the most simplified code I can think of:
x, a = var('x a')
y(x) = a * x^2
solve([y, y(0)==0, y(1)==0.5], a)
Can be executed here: https://sagecell.sagemath.org/
Can someone say what is wrong and why I am not getting any result?
Delete the first
yin the list: