Parabole.m
Completion requirements
function [ y ] = parabole( x, alpha )
b = 2.5;
c = 100;
y = -alpha * x.^2 + b*x +c
end