blob: b488358ec6ab8827e7e1e7f572b62ecb09d265a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import graph;
import lowupint;
size(100,0);
real a=-0.8, b=1.2;
real c=-1.0/sqrt(3.0);
partition(a,b,c,max);
arrow("$f(x)$",F(0.5*(a+b)),NNE,red);
label("$\cal{U}$",(0.5*(a+b),f(0.5*(a+b))/2));
|