Sponsored links: Algebra eBooks
 

Help Index

A

B

C

D

E

F

G

H

I

J

K

L

M

N

O

P

Q

R

S

T

U

V

W

X

Y

Z

The Maxima on-line user's manual

Algebra Calculator

Search:

Max

Function: max (<x_1>, ..., <x_n>) Return a simplified value for the maximum of the expressions <x_1> through <x_n>. When get (trylevel, maxmin), is 2 or greater, max uses the simplification max (e, -e) --> |e|. When get (trylevel, maxmin) is 3 or greater, <max> tries to eliminate expressions that are between two other arguments; for example, max (x, 2*x, 3*x) --> max (x, 3*x). To set the value of trylevel to 2, use put (trylevel, 2, maxmin).

range:4;
max:170;
multiplier: 12;
iquar: max/(1.3*(x/20)^4+1);
icub: max/(multiplier*(x/range)^3+1);
isqr: max/(multiplier*(x/range)^2+1);
sqrt: max*(1-sqrt(x/range));
lin: max*(1-(x/range));
sqr: max*(1-(x/range))^2;
cub: max*(1-(x/range))^3;
quad: max*(1-(x/range)^2);
plot2d([iquar,icub,isqr,100,lin,sqrt,sqr,cub,quad],[x,0,range],[y,0,max]);

There are also some inexact matches for max. Try ?? max to see them.

(%o1)                                true
(%i2) 

Related Examples

max-plot2d-sqrt-subst
plot2d([iquar,icub,isqr,100,lin,sqrt,sqr,cub,quad],[x,0,range],[y,0,max]);

range: 27;

rangeb: 27;

max: 230;

Calculate

max-plot2d-sqrt
plot2d([iquar,icub,isqr,100,lin,sqrt,sqr,cub,quad],[x,0,range],[y,0,max]);

range: 5;

max:230;

rangeb: 3.5;

Calculate

max

minimum:300;

hodnota:400;

max(0,hodnota);

Calculate

max

mi:-10;

mx:10;

u:5;

Calculate

max-plot2d-solve-sqrt-subst
plot2d([iquar,icub,isqr,100,lin,sqrt,sqr,cub,quad],[x,0,range],[y,0,max]);

range: 27;

rangeb: 54;

max: 230;

Calculate

max

minimum:300;

hodnota:200;

max(0,hodnota-minimum);

Calculate

max

max(0,300);

Calculate

max-plot2d
plot2d(f(x),[x,-100,1000]);

minimum:300;

hodnota:100;

f(x):=min(max(0,x-min...

Calculate

max-plot2d
plot2d([iquar,icub,isqr,ilin,rtot,100,lin],[x,0,range],[y,0,max]);

range: 60;

max: 230;

​multiplier: max-1;

Calculate

max

minimum:300;

hodnota:300;

max(0,hodnota-minimum);

Calculate