Grouping and logical implication in math mode

How can I type a formula like this:

boolean operations

He should respect the typographic rules, but he should look very similar.

+3
source share
3 answers

(Assuming you wanted to use logical disjunction and logical implication)

\[
\left.\begin{array}{l}
    A = T \\ B = F 
\end{array}\right\} 
\implies A \lor B = T \lor F = T
\]
+1
source

You can use the environment aligned(package required amsmath), for example

\left. \begin{aligned}
   A &= T \\
   B &= F 
\end{aligned} \right\} \implies A \vee B = T \vee F = T

+3
source

This code should do what you want:

\[ 
  \left.
  \begin{array}{c}
    A = T\\
    B = F
  \end{array}
  \right\}
  \Rightarrow A \vee B = T \vee F = T
\]
+1
source

Source: https://habr.com/ru/post/1745633/


All Articles