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).

f(x):=max(x-1,log(x));
plot2d([2*x-2,log(x)],[x,0.1,1.5],[style, [lines,2]]);

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: 54;

max: 230;

Calculate

max-min

fces1(b1,b2):=max(min...

fces2(b1,b2):=max(min...

fces3(b1,b2):=max(min...

Calculate

max-min

min(max(300,200),400);

Calculate

max-min

prov:400;

min(max(300,prov),0);

Calculate

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

range: 5;

max: 230;

​multiplier: 12;

Calculate

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

range:4;

max:170;

multiplier: 12;

Calculate

max-min-plot3d
plot3d(v(b1,b2),[b1,0,150],[b2,0,150]);

fces1(b1,b2):=max(min...

fces2(b1,b2):=max(min...

fces3(b1,b2):=max(min...

Calculate

max-solve

max: 230;

range: 27;

multiplier:12;

Calculate

max

minimum:300;

hodnota:200;

max(0,hodnota-minimum...

Calculate

max-plot2d-sqrt
plot2d([max/((3*x/range)^2+1),max/((x/range)+1),max/sqrt((25*x/range)+1),100,max*(1-(x/range)^(1/3)),max*(1-sqrt(x/range)),max*(1-(x/range)),max*((x/range)-1)^2,max*((1-x/range)^3),max*(1-(x/range)^2)],[x,0,range],[y,0,max]);

max: 230;

range: 27;

plot2d([max/((3*x/ran...

Calculate