3 x 3
Matrix Inputs X
Assign values to variables $x_{ij}$ to observe live gate evaluation across the DAG.
Step-by-Step Evaluation
Current Value Computed:
Perm = 0
Ready to evaluate circuit outputs.
Lower Bound Formula
Size: O(2^(n-1) * n) | Depth: O(n)
Ryser's inclusion-exclusion formula achieves $O(2^n n)$ operations, optimal for general arithmetic circuits.
Circuit Complexity Scaling
Circuit Topology Metrics
Total Gates (Size):19
Circuit Depth:3
Max Algebraic Degree:3
Complexity Class:VNP-complete
Lean 4 Lower Bound Certificate
-- Verification of Circuit Lower Bound
theorem permanent_vnp_hard (n : ℕ) :
CircuitSize (Permanent n) ≥ 2^(n-1) * n :=
begin
-- Ryser Inclusion-Exclusion lower bound
sorry
end