free-symbols

N-ary Logical And Symbol

⋀ denotes an N-ary logical AND, meaning the conjunction of multiple conditions.

U+22C0

The symbol ⋀, also known as N-ary logical AND, is used to express that multiple statements are jointly true. You’ll often see it in formal logic, mathematics, and specification-style writing. Copy and paste it with the provided HTML and code escapes.

N-ary Logical And Symbol Meaning

⋀ (U+22C0) is the N-ary logical AND, a conjunction operator meaning “all of these conditions hold.” It generalizes the idea of AND beyond two inputs, combining zero-or-more (or typically multiple) predicates into a single combined statement. In logic notation, a formula using ⋀ is read as the conjunction of its terms—e.g., “A and B and C” expressed as one grouped operation. In math contexts, it can also appear in lattice/logic-related notation where conjunction corresponds to a “meet” operation. Overall, it’s a compact, formal way to state that every listed condition must be satisfied.

Common uses

  • Writing formal logic statements that require multiple premises to be true
  • Specifying query or filter conditions using “all must match” semantics
  • Documenting boolean rules in technical specs and requirements
  • Annotating proofs or derivations where several propositions are conjoined
  • Designing logic expressions in code comments, pseudocode, or diagrams

Examples

⋀ N-ary Logical AND Symbol

  • If P and Q and R are true, then ⋀{P, Q, R} holds.
  • System is considered safe when ⋀(all required checks pass).
  • Let ⋀(i=1..n) Si represent the conjunction of predicates Si.
  • The rule outputs true only if ⋀(x>0, y>0, x+y<10) is satisfied.
  • We assume ⋀(A1, A2, A3) throughout the proof.

Variations

Ready to copy

Technical codes

UnicodeU+22C0
HTML Entity&#8896;
HTML Code&#x22C0;
CSS\22C0

FAQ

What does ⋀ mean in logic and math?

⋀ is the N-ary logical AND (U+22C0). It represents the conjunction of multiple conditions—i.e., all listed statements are true.

Is ⋀ the same as the ∧ symbol?

They’re related: ∧ is commonly used for logical AND, while ⋀ is specifically labeled “N-ary logical AND” (a conjunction over multiple terms). In many contexts they’re used similarly, but the notation emphasis differs.

How can I copy ⋀ into HTML or code?

HTML entity: &#8896;. JavaScript escape: \\u{22C0}. CSS escape: \\22C0.

Where will I see ⋀ used most often?

You’ll commonly find ⋀ in formal logic writing, math notation, and technical documentation where multiple predicates must all hold.

Related symbols