Theorems · Theorem · group theory
finsum_induction
∀ {M : Type u_2} {α : Sort u_4} [inst : AddCommMonoid M] {f : α → M} (p : M → Prop),
p 0 → (∀ (x y : M), p x → p y → p (x + y)) → (∀ (i : α), p (f i)) → p (∑ᶠ (i : α), f i)To prove a property of a finite sum, it suffices to prove that the property is additive and holds on the summands.
- Defined in
- Mathlib.Algebra.BigOperators.Finprod
- Cited by
- 3 results in Mathlib
- Foundations
- Depth 72 from the axioms · uses propext, Classical.choice, Quot.sound
- Assumes
- AddCommMonoid
Around this declaration
Dashed lines are statement dependencies; solid lines are citations in proofs.
Cites6
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- AddCommMonoidstatement and proof · cited by 12,281
- Set.Finite.toFinsetproof · cited by 351
- finsumstatement · cited by 286
- Function.HasFiniteSupportproof · cited by 113
- Finset.sum_inductionproof · cited by 13
- finsum_def'proof · cited by 9
Cited by3
Results whose statement or proof uses this declaration.
- finsum_nonnegproof · cited by 4
- tsum_nonposproof · cited by 1
- finsum_mem_inductionproof · cited by 0