
hodgefunction (K, n = dovs(K), g, lose = TRUE)
{
if (missing(g)) {
g <- rep(1, n)
}
if (is.empty(K)) {
if (missing(n)) {
stop("'K' is zero but no value of 'n' is supplied")
}
else {
return(kform(spray(matrix(1, 0, n - arity(K)), 1)))
}
}
else if (is.volume(K, n)) {
return(scalar(coeffs(K), lose = lose))
}
else if (is.scalar(K)) {
if (missing(n)) {
stop("'K' is scalar but no value of 'n' is supplied")
}
else {
return(volume(n) * coeffs(K))
}
}
stopifnot(n >= dovs(K))
f1 <- function(o) {
seq_len(n)[!seq_len(n) %in% o]
}
f2 <- function(x) {
permutations::sgn(permutations::as.word(x))
}
f3 <- function(v) {
prod(g[v])
}
iK <- index(K)
jj <- apply(iK, 1, f1)
if (is.matrix(jj)) {
newindex <- t(jj)
}
else {
newindex <- as.matrix(jj)
}
x_coeffs <- elements(coeffs(K))
x_metric <- apply(iK, 1, f3)
x_sign <- apply(cbind(iK, newindex), 1, f2)
as.kform(newindex, x_metric * x_coeffs * x_sign)
}
To cite the stokes package in publications, please use
Hankin (2022); this function monograph
discusses hodge(). Given a
-form
,
function hodge() returns its Hodge dual
.
Formally, if
,
and
is the space of alternating linear maps from
to
,
then
.
To define the Hodge dual, we need an inner product
[function kinner() in the package] and, given this and
we define
to be the (unique)
-form
satisfying the fundamental relation:
for every . Here is the unit -vector of . Taking determinants of this relation shows the following. If we use multi-index notation so with , then
where
is the
complement of
,
and
is the sign of the permutation
. We extend to the
whole of
using linearity. Package idiom for calculating the Hodge dual is
straightforward, being simply hodge().
We start by demonstrating hodge() on basis elements of
.
Recall that if
is a basis
of vector space
,
then
is a basis of
,
where
.
A basis of
is given by the set
This means that basis elements are things like . If , what is ?
## An alternating linear map from V^3 to R with V=R^7:
## val
## 2 6 7 = 1
hodge(a,9)## An alternating linear map from V^6 to R with V=R^9:
## val
## 1 3 4 5 8 9 = -1
See how
has index entries 1-9 except
(from
).
The (numerical) sign is negative because the permutation has negative
(permutational) sign. We can verify this using the
permutations package:
p <- c(2,6,7, 1,3,4,5,8,9)
(pw <- as.word(p))## [1] (1264)(375)
## [coerced from word form]
print_word(pw)## 1 2 3 4 5 6 7 8 9
## [1] 2 6 7 1 3 4 5 . .
sgn(pw)## [1] -1
Above we see the sign of the permutation is negative. More succinct idiom would be
## An alternating linear map from V^6 to R with V=R^9:
## val
## 1 3 4 5 8 9 = -1
The second argument to hodge() is needed if the largest
index
of the first argument is less than
;
the default value is indeed
.
In the example above, this is
:
## An alternating linear map from V^4 to R with V=R^5:
## val
## 1 3 4 5 = -1
Above we see the result if .
The hodge operator is linear and it is interesting to verify this.
(o <- rform())## An alternating linear map from V^3 to R with V=R^7:
## val
## 2 6 7 = 6
## 2 5 7 = 5
## 5 6 7 = -9
## 1 3 7 = 4
## 1 5 7 = 7
## 2 3 5 = -3
## 1 5 6 = -8
## 1 2 7 = 2
## 1 4 6 = 1
hodge(o)## An alternating linear map from V^4 to R with V=R^7:
## val
## 2 3 5 7 = -1
## 3 4 5 6 = 2
## 2 3 4 7 = -8
## 1 4 6 7 = -3
## 2 3 4 6 = -7
## 2 4 5 6 = -4
## 1 2 3 4 = -9
## 1 3 4 6 = 5
## 1 3 4 5 = -6
We verify that the fundamental relation holds by direct inspection:
o ^ hodge(o)## An alternating linear map from V^7 to R with V=R^7:
## val
## 1 2 3 4 5 6 7 = 285
## An alternating linear map from V^7 to R with V=R^7:
## val
## 1 2 3 4 5 6 7 = 285
showing agreement (above, we use function volume() in
lieu of calculating the permutation’s sign explicitly. See the volume vignette for more details). We may work
more formally by defining a function that returns TRUE if
the left and right hand sides match
and call it with random -forms:
## [1] TRUE
Or even
## [1] TRUE
We can work in three dimensions in which case we have three linearly
independent
-forms:
,
,
and
.
To work in this system it is better to use dx print
method:
## An alternating linear map from V^2 to R with V=R^3:
## + dy^dz
This is further discussed in the dovs vignette.
The three dimensional vector cross product is a standard part of elementary vector calculus. In the package the idiom is as follows:
vcp3## function (u, v)
## {
## hodge(as.1form(u)^as.1form(v))
## }
revealing the formal definition of cross product as . There are several elementary identities that are satisfied by the cross product:
We may verify all four together:
u <- c(1,4,2)
v <- c(2,1,5)
w <- c(1,-3,2)
x <- c(-6,5,7)
c(
hodge(as.1form(u) ^ vcp3(v,w)) == as.1form(v*sum(w*u) - w*sum(u*v)),
hodge(vcp3(u,v) ^ as.1form(w)) == as.1form(v*sum(w*u) - u*sum(v*w)),
as.1form(as.function(vcp3(v,w))(u)*u) == hodge(vcp3(u,v) ^ vcp3(u,w)) ,
hodge(hodge(vcp3(u,v)) ^ vcp3(w,x)) == sum(u*w)*sum(v*x) - sum(u*x)*sum(v*w)
) ## [1] TRUE TRUE TRUE TRUE
Above, note the use of the hodge operator to define triple vector cross products. For example we have .
The inner product above may be generalized by defining it on decomposable vectors and as
where
is an inner product on
[the inner product is given by kinner()]. The resulting
Hodge star operator is implemented in the package and one can specify
the metric. For example, if we consider the Minkowski metric this would
be
.
The standard print method is not particularly suitable for working with the Minkowski metric:
options(kform_symbolic_print = NULL) # default print method
(o <- kform_general(4,2,1:6))## An alternating linear map from V^2 to R with V=R^4:
## val
## 3 4 = 6
## 2 4 = 5
## 1 4 = 4
## 2 3 = 3
## 1 3 = 2
## 1 2 = 1
Above we see an unhelpful representation. To work with
-forms
in relativistic physics, it is often preferable to use bespoke print
method usetxyz:
options(kform_symbolic_print = "txyz")
o## An alternating linear map from V^2 to R with V=R^4:
## +6 dy^dz +5 dx^dz +4 dt^dz +3 dx^dy +2 dt^dy + dt^dx
Function hodge() takes a g argument to
specify the metric:
hodge(o)## An alternating linear map from V^2 to R with V=R^4:
## + dy^dz -2 dx^dz +3 dt^dz +4 dx^dy -5 dt^dy +6 dt^dx
## An alternating linear map from V^2 to R with V=R^4:
## - dy^dz +2 dx^dz +3 dt^dz -4 dx^dy -5 dt^dy +6 dt^dx
## An alternating linear map from V^2 to R with V=R^4:
## +8 dx^dy -4 dx^dz +2 dy^dz