← Back to Hub

🔌 Logic Gate Arena

Master AND, OR, NOT Operations for Search Pruning

Round
1
Score
0
Streak
0
AND
Both must be TRUE
OR
At least one TRUE
NOT
Flip the value

🧠 Evaluate This Expression

What is the result?

📚 Logic Gates in Search

Logic gates help prune search spaces efficiently:

AND Gate

TRUE only if ALL inputs are TRUE

Use for: conditions that must ALL be met

OR Gate

TRUE if ANY input is TRUE

Use for: alternative paths in search

NOT Gate

Inverts the input

Use for: excluding conditions

📋 Challenge History

Truth Tables

AND

A B A∧B
T T T
T F F
F T F
F F F

OR

A B AâˆĻB
T T T
T F T
F T T
F F F

NOT

A ÂŽA
T F
F T