Jump to content

ASCII math notation

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 81.20.1.18 (talk) at 13:44, 18 November 2002 (Lots of short hand!). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

A notation widely used on Internet sites, for example here, where typing complicated mathematical symbols is rather cumbersome.

Long-hand:

ef(x,y,...)

Short-hand:

exp(f(x,y,...))

Long-hand:

lim
    (f(r,x,...))
r->c

Short-hand:

lim(f(r,x,...),r,c)

where c can be a finite quantity, or &inf;. The limit from the left is called llim, and the limit from the right rlim.

Long-hand:

  b
∑ f(x,r,...)
 r=a

Short-hand:

sum(f(x,r,...),r,a,b)

Long-hand:

The Taylor series of degree k for f(x,y,...) with respect to x about a.

Short-hand:

tayl(f(x,y,...),x,k,a)

Long-hand:

The Maclaurin series of degree k for f(x,y,...) with respect to x.

Short-hand:

macl(f(x,y,...),x,k)

Long-hand:

  b
∫ f(x) dx
  a

Short-hand:

int(f(x),x,a,b)

Long-hand:

 d
--- (f(x))
d x

Short-hand:

d/dx(f(x))