Skip to content

Commit

Permalink
chore(linear_algebra/pi_tensor_product): add reindex_reindex (#10336)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Nov 15, 2021
1 parent a0f2c47 commit 9074095
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/linear_algebra/pi_tensor_product.lean
Expand Up @@ -424,6 +424,10 @@ begin
congr,
end

@[simp] lemma reindex_reindex (e : ι ≃ ι₂) (e' : ι₂ ≃ ι₃) (x : ⨂[R] i, M) :
reindex R M e' (reindex R M e x) = reindex R M (e.trans e') x :=
linear_equiv.congr_fun (reindex_trans e e' : _ = reindex R M (e.trans e')) x

@[simp] lemma reindex_symm (e : ι ≃ ι₂) :
(reindex R M e).symm = reindex R M e.symm := rfl

Expand Down

0 comments on commit 9074095

Please sign in to comment.