Why do some quadratic graphs have a flat bottom?

540 Views Asked by At

Why do some quadratic graphs have a flat bottom? This is concerning sketching the graph on a physical graph. An example of it would be the equation:y=x^2 -5x+4

1

There are 1 best solutions below

1
On BEST ANSWER

To illustrate the answer you've been given in the comments (using MATLAB code)

x = 0:0.001:5;
plot(x,x.^2-5*x+4);
x = 0:1:5;
hold on;plot(x,x.^2-5*x+4)

enter image description here