LineInt - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


VectorCalculus

  

LineInt

  

compute the line integral of a vector field in R^n

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

LineInt(F, dom, inert)

Parameters

F

-

vector field or a Vector-valued procedure; specify the vector field to integrate

dom

-

unevaluated function call; specify the path of integration

inert

-

(optional) name; specify that the integral representation is to be returned

Description

• 

The LineInt(F, dom) command computes the line integral of the vector field F over the path specified by dom.  Note that variable names are not required (and cannot be supplied) here as they are in PathInt since they will be retrieved from coordinate system attribute of F.

• 

The paths of integration are specified by unevaluated function calls. The possible paths of integration are Arc(obj, start, finish), Circle(cen, rad), Circle3D(cen, rad, normal), Ellipse(cen, a, b, phi), Ellipse(eqn, varx, vary), Line(p1, p2), LineSegments(p1, p2, ..., pk), and Path(v, rng, c).

  

Arc(obj, start, finish)

  

The first parameter of Arc, obj, is a Circle or Ellipse structure. The Arc structure defines a segment of the circle or ellipse with endpoints specified by the start and finish angles.

  

To define precisely how the endpoints are determined from the given start and finish angles, it suffices to discuss only circles and ellipses centered at the origin. For a circle or ellipse centered elsewhere, the start and finish endpoints are determined as if the circle or ellipse were first translated to the origin.

  

For a Circle centered at the origin, angle is measured counterclockwise from the positive x-axis. Therefore, the angle 3π2 specifies the negative y-axis.

  

To define how angle is measured for an Ellipse centered at the origin, we first define the right semimajor axis of the ellipse to be the semimajor axis in the right half-plane (the first and fourth quadrants of the plane). If the major axis of the ellipse is coincident with the y-axis, then its right semimajor axis is defined to be the one on the negative y-axis. Thus, for an ellipse centered at the origin with its major axis sitting on the line y = x, its right semimajor axis is the one inside the first quadrant.

  

For an Ellipse centered at the origin, angle is measured counterclockwise from its right semimajor axis. Therefore, in the example ellipse given in the previous paragraph, the angle π4 specifies the positive y-axis.

  

Once the terminal arm of the angle is determined, that angle specifies the point where the terminal arm (viewed as a ray) intersects the circle or ellipse. The arc is always traversed in its entirety from start to finish; therefore, it is possible to traverse the circle or ellipse for more than one full revolution or to traverse in the opposite (clockwise) direction by specifying appropriate start and finish angles.

  

Circle(cen, rad)

  

The parameter cen is the center of the circle and must have type 'Vector'(algebraic) and rad is the radius of the circle and must have type algebraic.  If a coordinate system attribute is specified on cen, it is interpreted in that coordinate system.

  

Circle3D(cen, rad, normal)

  

The parameter cen is the center of the circle and must have type 'Vector'(algebraic), rad is the radius of the circle and must have type algebraic and normal is the normal to the plane in which the circle lies and must have type 'Vector'(algebraic).  If a coordinate system attribute is specified on cen, it is interpreted in that coordinate system.

  

The line integral of the tangential component of the field is computed using Stokes' theorem, converting it to a surface integral. If the inert option is used, a double integral over the disk bounded by the given circle is returned. (Note that the applicability of Stokes' theorem is not verified.)

  

Ellipse(cen, a, b, phi)

  

The parameter cen is the center of the ellipse and must have type 'Vector'(algebraic). If a coordinate system attribute is specified on cen, it is interpreted in that coordinate system. The parameters a and b are the lengths of the semimajor and semiminor axes, respectively. The resulting ellipse is constructed via the following process: Start with an ellipse centered at the origin having the specified axes lengths, with its major axis initially on the x-axis. It is rotated through an angle of phi in the counterclockwise direction and translated to cen.

  

Ellipse(eqn, varx, vary)

  

The parameter eqn is either a Cartesian equation specifying the ellipse or an algebraic expression such that the equation eqn = 0 specifies the ellipse. A Cartesian equation for a general conic section is of the form Ax2+Bxy+Cy2+Ex+Fy+G=0, and specifies the locus of all points x,y that satisfy the equation; this locus is a non-degenerate, real ellipse if and only if three conditions hold:

ΔDeterminant2A|B|E,B|2C|F,E|F|2G0

CΔ<0

4AC+B2<0

  

The two variable names that appear in eqn can be specified via varx and vary. The variable specified by varx represents the x-axis, and vary the y-axis. Both varx and vary can be omitted, but only if F is in Cartesian coordinates and its coordinate names are the same as the variables that appear in the equation.

  

Line(p1, p2)

  

The parameters p1 and p2 must be of type 'Vector'(algebraic), and they represent the endpoints of the directed line segment from p1 to p2. If coordinate system attributes are specified on the points, they are interpreted in their respective coordinate systems.

  

LineSegments(p1, p2, ..., pk)

  

Similar to Line(p1, p2) above, the pi's represent the endpoints of k1 line segments.  The path of integration is the collection of line segments directed from p1 to p2, p2 to p3, ..., p(k-1) to pk. If any coordinate system attributes are specified on these points, they are interpreted in their respective coordinate systems.

  

Path(v, rng, c)

  

The first parameter, v, is a Vector representing the components of the path, and the second parameter, rng, must have type {range, name=range}.  If no parameter name is specified in rng, it is inferred from v.

  

If the optional third argument, c, is specified, it must be an equation of the form coords=sys or coordinates=sys. This is the coordinate system in which v is interpreted. Note: if this argument is supplied, any existing coordinate attribute on v is overwritten (and therefore ignored).

• 

The LineInt(F, dom, inert) command returns the integral form of the line integral of the F over dom.

Examples

withVectorCalculus&colon;

SetCoordinatescartesianx,y

cartesianx,y

(1)

LineIntVectorFieldx&comma;y&comma;Line1&comma;2&comma;3&comma;4

10

(2)

LineIntVectorFieldx&comma;y&comma;LineSegments0&comma;0&comma;1&comma;1&comma;1&comma;1

1

(3)

LineIntVectorFieldx2&comma;y2&comma;Patht&comma;t2&comma;t=0..2

24

(4)

LineIntVectorFieldy&comma;x&comma;Circle0&comma;0&comma;r

2πr2

(5)

LineIntVectorFieldy&comma;x&comma;Ellipse0&comma;0&comma;3&comma;2&comma;π2

12π

(6)

an ellipse can also be specified via its defining equation

LineIntVectorFieldy&comma;x&comma;Ellipsex24+y29=1

12π

(7)

it can also be specified by an expression, as in

LineIntVectorFieldy&comma;x&comma;Ellipsex24+y291

12π

(8)

LineIntVectorFieldy&comma;x&comma;Ellipsex24+y291&comma;inert

02π6cost26sint2&DifferentialD;t

(9)

LineIntVectorFieldy&comma;x&comma;ArcCircle0&comma;0&comma;r&comma;0&comma;π

πr2

(10)

any valid ellipse structure (described above) is allowed here

LineIntVectorFieldy&comma;x&comma;ArcEllipsex24+y29=1&comma;0&comma;π2

3π

(11)

a conservative vector field

LineIntVectorFieldy&comma;x&comma;Ellipse1&comma;2&comma;3&comma;2&comma;0

0

(12)

LineIntVectorFieldy&comma;x&comma;Circle1&comma;2&comma;3

0

(13)

LineIntVectorFieldy&comma;x&comma;LineSegments0&comma;0&comma;1&comma;1&comma;1&comma;1&comma;0&comma;0

0

(14)

SetCoordinatescartesianx,y,z

cartesianx,y,z

(15)

LineIntVectorFieldy&comma;x&comma;z&comma;Circle3D0&comma;0&comma;0&comma;r&comma;1&comma;1&comma;1

23r2π3

(16)

See Also

VectorCalculus

VectorCalculus[Flux]

VectorCalculus[int]

VectorCalculus[PathInt]

VectorCalculus[SurfaceInt]

VectorCalculus[Vector]

VectorCalculus[VectorField]