To prove P ∧ Q, prove P and prove Q separately.
Conjunction introduction requires two premises — one for each conjunct. You must supply independent proofs of both P and Q. The two sub-proofs sit side by side above the horizontal bar.
P Q ————————— ∧-Intro P ∧ Q
| Prover | Syntax |
|---|---|
| Lean 4 | constructor or exact ⟨hp, hq⟩ |
| Coq | split |
| Agda | hp , hq |
Prove P ∧ (Q ∧ R) from assumptions P, Q, R. How many ∧-Intro rules do you need?
You need to build Q ∧ R first (one ∧-Intro), then combine P with Q ∧ R (another ∧-Intro).
Q R
————————— ∧-Intro
P Q ∧ R
————————————— ∧-Intro
P ∧ (Q ∧ R)
You need two ∧-Intro rules: one to build Q ∧ R, and one to build P ∧ (Q ∧ R).
See also: Logic §03 — Conjunction | Strategies §02 — Split the goal