kinner {stokes} | R Documentation |
Inner product of two kforms
Description
Given two -forms
and
,
return the inner product
. Here our
underlying vector space
is
.
The inner product is a symmetric bilinear form defined in two stages.
First, we specify its behaviour on decomposable -forms
and
as
and secondly, we extend to the whole of
through linearity.
Usage
kinner(o1,o2,M)
Arguments
o1 , o2 |
Objects of class |
M |
Matrix |
Value
Returns a real number
Note
There is a vignette available: type vignette("kinner")
at
the command line.
Author(s)
Robin K. S. Hankin
See Also
Examples
a <- (2*dx)^(3*dy)
b <- (5*dx)^(7*dy)
kinner(a,b)
det(matrix(c(2*5,0,0,3*7),2,2)) # mathematically identical, slight numerical mismatch
[Package stokes version 1.2-1 Index]