student(deprecated)/leftbox - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : student(deprecated)/leftbox

student

  

leftbox

  

graph an approximation of an integral

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

leftbox(f(x), x=a..b, <plot options>)

leftbox(f(x), x=a..b, n, 'shading'=<color>, <plot options>)

Parameters

f(x)

-

algebraic expression in x

x

-

variable of integration

a

-

left bound of integration

b

-

right bound of integration

n

-

(optional) indicates the number of rectangles to use

color

-

indicates the color used to shade the rectangles

plot options

-

(optional) additional plot options, see ?plot,options

Description

• 

Important: The student package has been deprecated. Use the superseding command Student[Calculus1[[RiemannSum] instead.

• 

The function leftbox will generate a plot of rectangular boxes used to approximate a definite integral.  The height of each rectangle (box) is determined by the value of the function at the left side of each interval.

• 

Four intervals are used by default.

• 

The formula for the corresponding numerical approximation to this integral is generated by the Maple procedure leftsum.  It can be computed by using the procedure value or evalf.

• 

The command with(student,leftbox) allows the use of the abbreviated form of this command.

Examples

Important: The student package has been deprecated. Use the superseding command Student[Calculus1][RiemannSum] instead.

> 

with⁡student&colon;

> 

leftbox⁡x4⁢ln⁡x&comma;x=2..4&comma;color=RED

> 

leftbox⁡sin⁡x⁢x+sin⁡x&comma;x=0..2⁢π&comma;5&comma;shading=BLUE

> 

leftsum⁡sin⁡x⁢x+sin⁡x&comma;x=0..2⁢π&comma;5

2⁢π⁢∑i=04⁡2⁢sin⁡2⁢i⁢π5⁢i⁢π5+sin⁡2⁢i⁢π55

(1)
> 

value⁡

2⁢π⁢−6⁢sin⁡2⁢π5⁢π5−2⁢sin⁡π5⁢π55

(2)
> 

evalf⁡

−5.433738028

(3)

See Also

plot[options]

Student

student(deprecated)[leftsum]

student(deprecated)[middlebox]

student(deprecated)[middlesum]

student(deprecated)[rightbox]

student(deprecated)[rightsum]

student(deprecated)[simpson]

student(deprecated)[trapezoid]

Student[Calculus1][LeftRiemannSum]

Student[Calculus1][RiemannSum]