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

Online Help

All Products    Maple    MapleSim


piecewise

piecewise-continuous functions

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

piecewise(cond_1, f_1, cond_2, f_2, ..., cond_n, f_n, f_otherwise)

Parameters

f_i

-

expression

cond_i

-

relation or boolean combination of inequalities

f_otherwise

-

(optional) default expression

Description

• 

With the piecewise function it is possible to express piecewise-continuous functions.  The semantics are as in a case statement: if cond_1 is true then f_1, else if cond_2 is true then f_2, and so on. f_otherwise gives a default case which corresponds to all conditions being false.  The default for f_otherwise is 0.

• 

A condition can be a single equality, inequality, or inequation, or a boolean combination thereof, such as x<3 or And(x>0, x<=Pi) (which is the same as 0<xxπ). The conditions can contain relations with polynomials, abs, signum, or piecewise functions, such as 0<x240<x or x<4. The left and right-hand sides of inequalities are assumed to be real quantities.

• 

When using boolean combinations of relations, the use of boolean functions (such as And and Or) in piecewise functions is recommended over using boolean operators (such as and and or). While it is possible to use the operators if all relations involved are inequalities, or if all variables have been assigned values, using operators with equations or inequations involving symbolic parameters will lead to unexpected results. For more details, see the documentation of the evalb command.

• 

The piecewise function can be differentiated, integrated, simplified, plotted, and used in the following types of differential equations: constant coefficients and discontinuous perturbation function, general first-order linear, Riccati, and some other classes which are handled by integration or variation of parameter.  See dsolve/piecewise for more details. series, limit, abs, and signum can handle the piecewise function.

• 

If parameters are involved in the conditions, the system requires useful assumptions in order to perform computations.  For example, piecewise(a*x<1,f(x)) cannot be manipulated unless Maple can determine whether a is positive or negative using the assume system. See "What Assumptions" in the Context Panel.

• 

There exist convert procedures to convert a piecewise function to an expression containing the Heaviside function and vice versa. A piecewise function can also be converted to a list representation, called pwlist. Expressions containing abs or signum can be converted to piecewise functions.

• 

To enter a piecewise function in 2-D Math notation, you can use either the palettes or command completion. To add an additional line to this piecewise function, press Ctrl + Shift + R. See 2-D Math Shortcut Keys and Hints for more information.  Alternatively, with your cursor in a row of the piecewise function, from the Context Panel select Insert Row Above or Insert Row Below.

• 

The piecewise function evaluates its arguments on an as-needed basis. For example, if the first argument of a 3-argument call evaluates to true, the second argument is then evaluated and returned; the third argument is never evaluated.

  

An exception to the above is if piecewise is passed a single argument. That argument is evaluated, and if it yields an expression sequence, the members of that sequence are used as the actual arguments to piecewise. No further evaluation of the arguments takes place.

Examples

piecewise0<x&comma;x

x0<x0otherwise

(1)

The plot of a piecewise function.

plotpiecewisex<2&comma;x2&comma;2x&comma;3x+6&comma;x=0..6

eq1piecewiseAnd4<x2&comma;x<8&comma;fx

eq1fx4<x2x<80otherwise

(2)

simplifyeq1

fxx<−20x2fxx<808x

(3)

Piecewise functions can have parameters in the conditions.

assumea<b&comma;b<c

eq2piecewiseAnda<x&comma;x<b&comma;1&comma;Andb<x&comma;x<c&comma;2

eq21a~<xx<b~2b~<xx<c~

(4)

converteq2&comma;piecewise&comma;x

0xa~1x<b~0x=b~2x<c~0c~x

(5)

assumed<0&colon;

eq3piecewise0<xd2&comma;1&comma;2

eq310<d~x22otherwise

(6)

converteq3&comma;piecewise&comma;x

1x<2d~22d~x

(7)

Using boolean operators in piecewise conditions can lead to unexpected results, because the conditions are evaluated according to the rules used by the evalb command.

piecewisex=0orx=1&comma;a&comma;b

b~

(8)

piecewisex0and0<y&comma;a&comma;b

a~0<yb~otherwise

(9)

piecewisen::integerand3<n&comma;n2&comma;n3

n3

(10)

x=0orx=1

false

(11)

x0and0<y

0<y

(12)

n::integerand3<n

false

(13)

Using the boolean functions And, Or, and Not instead is recommended. This delays evaluation of the conditions until their truth or falsehood can be determined definitively.

fpiecewiseOrx=0&comma;x=1&comma;a&comma;b

fa~x=0x=1b~otherwise

(14)

fassuming0<x

a~x=1b~otherwise

(15)

gpiecewiseAndx0&comma;0<y&comma;a&comma;b

ga~x00<yb~otherwise

(16)

gassuming0<y

a~x0b~otherwise

(17)

hpiecewiseAndn::integer&comma;3<n&comma;n2&comma;n3

hn2n::3<nn3otherwise

(18)

hassuming3<n

n2n::n3otherwise

(19)

Piecewise functions can be simplified.

ppiecewisex<0&comma;x&comma;0<x&comma;x

pxx<0x0<x

(20)

eq4p2+5

eq4xx<0x0<x2+5

(21)

simplifyeq4

x2+5

(22)

lpiecewisex<0&comma;x2&comma;0<x&comma;x

lx2x<0x0<x

(23)

eq5l2+5

eq5x2x<0x0<x2+5

(24)

simplifyeq5

x4x020<x+5

(25)

mpiecewisex<a&comma;x&comma;b<x&comma;x2

mxx<a~x2b~<x

(26)

eq6simplifym2

eq6x21x<a~xb~<x2

(27)

However, if the intent is to convert to a single piecewise function, convert should be used instead:

converteq6&comma;piecewise&comma;x

x2x<a~0xb~x4b~<x

(28)

Other operations involving piecewise functions.

kxpiecewisex<0&comma;−1&comma;x<1&comma;0&comma;1

kx−1x<00x<11otherwise

(29)

k12

0

(30)

jpiecewisex<0&comma;x2&comma;0<x&comma;x2

jx2x<0x20<x

(31)

diffj&comma;x

2xx02x0<x

(32)

intj&comma;x

x33x0x330<x

(33)

evalj&comma;x=2

4

(34)

evalj&comma;x=2

−4

(35)

See Also

combine/piecewise

convert/Heaviside

convert/piecewise

convert/pwlist

dsolve/piecewise

evalb

Heaviside

simplify/piecewise