Skip to content

Commit

Permalink
Update graded.lean
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanyi-350 committed Oct 6, 2024
1 parent 06fb1cc commit 0841bd5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion FilteredRing/graded.lean
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,17 @@ instance : DirectSum.GSemiring (GradedPiece F) where
zero_mul := by sorry
mul_add := by
intro i j a b c
sorry
show gradedMul F a (b + c) = gradedMul F a b + gradedMul F a c
unfold gradedMul
induction a using Quotient.ind'
induction b using Quotient.ind'
induction c using Quotient.ind'
change Quotient.mk'' _ = Quotient.mk'' _
rw [Quotient.eq'']
simp [QuotientAddGroup.leftRel_apply, AddSubgroup.mem_addSubgroupOf]
rw [mul_add, neg_add_eq_zero.mpr]
exact zero_mem _
rfl
add_mul := sorry
one := sorry
one_mul := sorry
Expand Down

0 comments on commit 0841bd5

Please sign in to comment.