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:

Min

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

getx(x):=(1/2000)*x;
f(x):=min(x*38*10,(log(x^4))+38);
plot2d(f(getx(x)),[x,1,200]);

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

(%o1)                                true
(%i2) 

Related Examples

min

a:0.01;

b:0.1;

min(a,b);

Calculate

min

a:0.2;

b:0.1;

min(a,b);

Calculate

min

a:0.2;

b:0.1;

min(min(a,b),b);

Calculate

min

a:0.01;

b:0.1;

min(a,b);

Calculate

min

min(10,100);

Calculate

min

min(300,200);

Calculate

min

min(0,300);

Calculate

min

a:0.01;

b:0.1;

min(a,b);

Calculate

min

a:0.2;

b:0.1;

min(a,b);

Calculate

min

fceb1s1(x):=min(80-((...

fceb1s2(x):=30-((0.15...

fceb1s3(x):=50-((0.3*...

Calculate