Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
n(x):=erf(x/sqrt(2))/...
bs(s,b,k,sigma,t):=(d...
bsdelta(s,b,k,sigma,t...
(%i1)f(x):=exp(-x^2); 2 (%o1) f(x) := exp(- x ) (%i2) tex( expand( integrate( (x-y-l)*f(x), x, l+y, inf) )); $${{\sqrt{\pi}\,y\,\mathrm{erf}\left(y+l\right)}\over{2}}+{{\sqrt{\pi }\,l\,\mathrm{erf}\left(y+l\right)}\over{2}}+{{e^{-y^2-2\,l\,y-l^2} }\over{2}}-{{\sqrt{\pi}\,y}\over{2}}-{{\sqrt{\pi}\,l}\over{2}}$$ (%o2) false (%i3) tex(integrate( expand( integrate( (x-y-l)*f(x), x, l+y, inf) * f(y)),y, -inf,inf)); $$\int_{-\infty }^{\infty }{{{\sqrt{\pi}\,y\,e^ {- y^2 }\, \mathrm{erf}\left(y+l\right)}\over{2}}+{{\sqrt{\pi}\,l\,e^ {- y^2 } \,\mathrm{erf}\left(y+l\right)}\over{2}}-{{\sqrt{\pi}\,y\,e^ {- y^2 }}\over{2}}-{{\sqrt{\pi}\,l\,e^ {- y^2 }}\over{2}}+{{e^{-2\,y^2-2\, l\,y-l^2}}\over{2}}\;dy}$$ (%o3) false (%i4) integrate( expand( integrate( (x-y-l)*f(x), x, l+y, inf) * f(y)),y, -inf,inf); inf 2 2 / - y - y [ sqrt(%pi) y %e erf(y + l) sqrt(%pi) l %e erf(y + l) (%o4) I (----------------------------- + ----------------------------- ] 2 2 / - inf 2 2 2 2 - y - y - 2 y - 2 l y - l sqrt(%pi) y %e sqrt(%pi) l %e %e - ------------------ - ------------------ + ---------------------) dy 2 2 2 (%i5) integrate( y*exp(-y^2), y, -inf,inf); (%o5) 0 (%i6) integrate( exp(-y^2)*erf(y+l),y,-inf,inf ); inf / 2 [ - y (%o6) I %e erf(y + l) dy ] / - inf (%i7) integrate( y*exp(-y^2),y,-inf,inf); (%o7) 0 (%i8) integrate( exp(-y^2),y,-inf,inf); (%o8) sqrt(%pi) (%i9) integrate( exp(-(y+l)^2),y,-inf,inf); (%o9) sqrt(%pi) (%i10) romberg(exp(-y^2)*erf(y+l),y,-inf,inf); 2 - y (%o10) romberg(%e erf(y + l), y, - 1.0 inf, inf) (%i11)
G(x):=0.5*(1+erf(x/sqrt(2))); x (%o1) G(x) := 0.5 (1 + erf(-------)) sqrt(2) (%i2) Q(x,m,d):= G((x-m)/d); x - m (%o2) Q(x, m, d) := G(-----) d (%i3)
eq1:exp(-x^2); 2 - x (%o1) %e (%i2) integrate(eq1,x); sqrt(%pi) erf(x) (%o2) ---------------- 2 (%i3) erf(2); (%o3) erf(2) (%i4)