If I am given x0,y0 and x1,y1 as starting and ending point coordinates to draw a curve(parabola), what will be the value of y for every corresponding x value if i increase the value of x by 1
2026-03-31 18:52:35.1774983155
plotting a curve between two given cordinates
53 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Unfortunately this problem has infinite solutions. To give you an example, I will assume $(x_0, y_0) = (0, 0)$ and $(x_1, y_1) = (1,1)$, a parabola of the form
$$ y= ax^2 + bx + c $$
Note that when you evaluate $(x_0,y_0)$ you get $c = 0$, if you evaluate $(x_1, y_1)$ you get
$$ y = ax(x - 1) + x $$
where $a$ can take any value. Here's an example