1

Is it possible to write this in a smaller form: $(A \neq \emptyset) \vee (B \neq \emptyset)$ ? is it for example mathematically correct to write it as: $A \vee B \neq \emptyset$ ?

shn
  • 1,062
  • 1
  • 10
  • 17

1 Answers1

1

I assume that $A,B$ here are some sets. Then it is not correct to write $A\vee B\neq \emptyset$, because $\vee$ is not a set operation. $(A\neq \emptyset) \vee (B\neq\emptyset)$ is a logic statement, which is true if and only if $A\neq \emptyset$ or $B\neq \emptyset$, so $(A\neq \emptyset) \vee (B\neq\emptyset)\Leftrightarrow A\cup B\neq \emptyset$

Julius
  • 1,920