0

I am using this formula:

0\leq y\leq 1\leq x\leq 2 = \left\{\begin{array}{ll} 0\leq y\leq 1 \\ 1\leq x\leq 2\end{array} \right.

which gives me this:

img

I would like to ask how I can rewrite it using right curly brace. Thanks.

J. Doe
  • 243

2 Answers2

1

If this is what you want :

enter image description here

Try like this (as per my comment)

\documentclass{article}


\begin{document}

\[
0\leq y\leq 1\leq x\leq 2 = \left\{\begin{array}{ll} 0\leq y\leq 1 \\ 1\leq x\leq 2\end{array} \right\}
\]

\end{document}
koleygr
  • 20,105
0

Found my solution from this post, it should be:

$$\left.\begin{array}{r}0\leq y\leq 1\\1\leq x\leq 2 \end{array} \right\} \Rightarrow 0\leq y\leq 1\leq x\leq 2$$

which gives me just what I need:

img

J. Doe
  • 243