The operation of multiplication on the set of integers Z is distributive over addition ∀x,y,z∈Z:x×\pareny+z=\parenx×y+\parenx×z∀x,y,z∈Z:\pareny+z×x=\pareny×x+\parenz×x
Preamble
import Mathlib.Analysis.Complex.Basic
Formal statement
theorem Integer_Multiplication_Distributes_over_Addition (a b c : ℤ) : a * (b + c) = a * b + a * c := by sorry