pith. machine review for the scientific record. sign in
def

tensor_product

definition
show as:
view math explainer →
module
IndisputableMonolith.Relativity.Geometry.Tensor
domain
Relativity
line
36 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Relativity.Geometry.Tensor on GitHub at line 36.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

formal source

  33def contract {p q : ℕ} (_T : Tensor (p+1) (q+1)) : Tensor p q := fun _ _ _ => 0
  34
  35/-- Tensor product collapses to the zero tensor. -/
  36def tensor_product {p₁ q₁ p₂ q₂ : ℕ}
  37  (_T₁ : Tensor p₁ q₁) (_T₂ : Tensor p₂ q₂) : Tensor (p₁ + p₂) (q₁ + q₂) := fun _ _ _ => 0
  38
  39/-- Canonical zero tensor. -/
  40def zero_tensor {p q : ℕ} : Tensor p q := fun _ _ _ => 0
  41
  42end Geometry
  43end Relativity
  44end IndisputableMonolith