#Can someone help me find a function F(x,y) that looks like this? (Picture attached)
14 messages · Page 1 of 1 (latest)
,tikz[scale=5]
\draw[->] (-.2,0) -- (1.2,0) node[pos=1.1] {$x$};
\draw[->] (0,-.2) -- (0,1.2) node[pos=1.1] {$y$};
\coordinate[label=below left:$0$] (O) at (0,0);
\coordinate[label=below:$1$] (E) at (1,0);
\coordinate[label=left:$1$] (N) at (0,1);
\foreach \s in {.25,.5,...,4}
\draw plot[domain=0:1, samples=51] (\x,\x^\s);
vin100
graph of $\vfunc{f_s}{[0,1]}{[0,1]}{x}{x^s}$ for $s \in \qty{.25,.5,\dots,4}$
vin100
flip it horizontally
,tikz[scale=5]
\draw[->] (-.2,0) -- (1.2,0) node[pos=1.1] {$x$};
\draw[->] (0,-.2) -- (0,1.2) node[pos=1.1] {$y$};
\coordinate[label=below left:$0$] (O) at (0,0);
\coordinate[label=below:$1$] (E) at (1,0);
\coordinate[label=left:$1$] (N) at (0,1);
\foreach \s in {.25,.5,...,4}
\draw plot[domain=0:1, samples=51] (\x,{(1-\x)^\s});
turn it into 3d graph
$\vfunc{h_s}{[0,1]^2}{[0,1]}{(x,y)}{(1-x-y)^s}$ for $s \in \qty{.25,.5,\dots,4}$
vin100
Someone found the answer: