You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our discussion on #30, we decided that sm should be proper with respect to equiv. Does that same reasoning hold for inprod? My intuition tells me it should, as I need that property to prove the following lemma about orthogonal projections:
Section orthogonal_projection.
Context `{InnerProductSpace K V}.
Definition proj (u v : V) : V := (⟨ u , v ⟩ / (⟨ u , u ⟩)) · u.
Lemma lemma1 : forall (c : K) (u1 u2 v : V), u1 = c · u2 -> proj u1 v = proj u2 v.
Adding the following lines to vectorspace.v allows me to rewrite using the equality hypothesis:
In our discussion on #30, we decided that
sm
should be proper with respect toequiv
. Does that same reasoning hold forinprod
? My intuition tells me it should, as I need that property to prove the following lemma about orthogonal projections:Adding the following lines to
vectorspace.v
allows me to rewrite using the equality hypothesis:I'm happy to make a pull request if this seems appropriate!
The text was updated successfully, but these errors were encountered: