DAG ⇔ Topological Order (∃ strict total order ∀ edges)

Prompt (Question • Data • Logic)

Question.
Is the directed graph G=(V,E) a DAG?
Data.
V = {a,b,c,d,e}   E = { a→b, a→c, b→d, c→d, d→e }
Logic (Second-Order).
∃ < ⊆ V×V. StrictTotalOrder(<) ∧ ∀(u→v)∈E. u < v
This quantifies over the binary relation “<” (a topological order), which is second-order.

Answer

Reason Why

Checks (at least 5)

Diagnostics

No errors yet.