Create bilinear.lean

This commit is contained in:
Stefan Kebekus 2024-06-26 12:28:39 +02:00
parent c1766f6a38
commit 07f4ff610b
1 changed files with 39 additions and 0 deletions

39
Nevanlinna/bilinear.lean Normal file
View File

@ -0,0 +1,39 @@
import Mathlib.Algebra.BigOperators.Basic
import Mathlib.Analysis.InnerProductSpace.Basic
import Mathlib.Analysis.InnerProductSpace.Dual
import Mathlib.Analysis.InnerProductSpace.PiL2
open BigOperators
open Finset
variable {E : Type*} [NormedAddCommGroup E] [InnerProductSpace E] [FiniteDimensional E]
variable {F : Type*} [NormedAddCommGroup F] [NormedSpace F]
open TensorProduct
example : 0 = 1 := by
let B := (sesqFormOfInner (𝕜 := ) (E := E)).flip
have e: E := by sorry
let C := B e
let α := InnerProductSpace.toDual E
let β : E →ₗ[] := by sorry
let YY := E ⊗[] E
let ZZ := TensorProduct.mapBilinear E E
let A : E × E → LinearMap.BilinForm E := by
unfold LinearMap.BilinForm
intro (e₁, e₂)
sorry
sorry