First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 2 years ago

achrzesz gravatar image
var('x,y,z') 
plot3d(lambda x,y :min(y,x),(x,0,1),(y,0,1))

gives a reasonable plot (if you rotate the plot manually)

click to hide/show revision 2
No.2 Revision

var('x,y,z') plot3d(lambda x,y :min(y,x),(x,0,1),(y,0,1))

:min(y,x),(x,0,1),(y,0,1))

gives a reasonable plot (if you rotate the plot manually)manually).

Numerical integration with mpmath:

from mpmath import *
mp.dps = 15; mp.pretty = True
f = lambda x,y,z: min(x,y,z)
quad(f,[0,1],[0,1],[0,1])
click to hide/show revision 3
No.3 Revision

var('x,y,z') plot3d(lambda x,y :min(y,x),(x,0,1),(y,0,1))

gives a reasonable plot (if you rotate the plot manually).

Numerical integration with mpmath:

from mpmath import *
mp.dps = 15; mp.pretty = True
f = lambda x,y,z: min(x,y,z)
quad(f,[0,1],[0,1],[0,1])
click to hide/show revision 4
No.4 Revision

var('x,y,z') 
 plot3d(lambda x,y :min(y,x),(x,0,1),(y,0,1))

:min(y,x),(x,0,1),(y,0,1))

gives a reasonable plot (if you rotate the plot manually).

Numerical integration with mpmath:

from mpmath import *
mp.dps = 15; mp.pretty = True
f = lambda x,y,z: min(x,y,z)
quad(f,[0,1],[0,1],[0,1])