# set terminal pngcairo transparent enhanced font "arial,10" fontscale 1.0 size 600, 400 # set output 'bivariat.3.png' set key fixed right bottom vertical Right noreverse enhanced autotitle nobox set samples 50, 50 set style data lines set title "approximate the integral of functions (upper and lower limits)" integral_f(x) = (x>0)?int1a(x,x/ceil(x/delta)):-int1b(x,-x/ceil(-x/delta)) int1a(x,d) = (x<=d*.1) ? 0 : (int1a(x-d,d)+(f(x-d)+4*f(x-d*.5)+f(x))*d/6.) int1b(x,d) = (x>=-d*.1) ? 0 : (int1b(x+d,d)+(f(x+d)+4*f(x+d*.5)+f(x))*d/6.) f(x)=(x-2)**2-20 integral2_f(x,y) = (xy-d*.5) ? 0 : (int2(x+d,y,d) + (f(x)+4*f(x+d*.5)+f(x+d))*d/6.) NO_ANIMATION = 1 delta = 0.2 plot [-10:10] f(x) title "f(x)=(x-2)**2-20", integral2_f(-5,x)