LinearAlgebra
HouseholderMatrix
construct a Householder Matrix
Calling Sequence
Parameters
Description
Examples
HouseholderMatrix(V, d, i, s, c, cpt, options)
V
-
Vector; used for constructing the Householder Matrix
d
(optional) non-negative integer; dimension of the resulting Matrix
i
(optional) positive integer; index of the top left corner of the Householder block in the resulting Matrix
s
(optional) algebraic expression
c
(optional) equation of the form conjugate=true or false; specifies whether to use the Hermitian transpose
cpt
(optional) equation of the form compact=true or false; selects the compact form of the output
options
(optional); constructor options for the result object
The HouseholderMatrix(V) function constructs a Householder Matrix from the values in V.
The default value for parameter s is 2 / VectorNorm(V, 2)^2.
If V is a Vector of dimension n and V* indicates its (Hermitian) transpose, then HouseholderMatrix(V) and HouseholderMatrix(V, n, 1, s) construct the Matrix Id−s⁢V.V* (if V is a column Vector) or Id−s⁢V*.V (if V is a row Vector), where Id=IdentityMatrix⁡n, and s takes its default value if it is not provided.
The HouseholderMatrix(V, d, i) function is equivalent to DiagonalMatrix([IdentityMatrix(i-1), HouseholderMatrix(V), IdentityMatrix(d-i-Dimension(V))]. HouseholderMatrix(V, d, i, s) acts similarly.
If c is included in the calling sequence as conjugate=true, the Hermitian transpose is used. Otherwise, the ordinary transpose is used.
If the compact option (cpt) is included in the calling sequence as just the symbol compact or in the form compact=true, then the result is built by using a shape function designed to minimize storage. If the option is omitted or entered as compact=false, a full rectangular Matrix is constructed. Generally, if space is not a consideration, the full rectangular form (the default) is more efficient.
Note: If the compact form is selected, any datatype specification in the constructor options is silently ignored. The datatype of any data retrieved from the constructed Matrix is determined by the data used to build the Matrix.
The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).
This function is part of the LinearAlgebra package, and so it can be used in the form HouseholderMatrix(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[HouseholderMatrix](..).
with⁡LinearAlgebra:
V≔3,4,x
V≔34x
W≔simplify⁡V+VectorNorm⁡V,2⁢UnitVector⁡1,3
W≔3+25+x24x
M≔HouseholderMatrix⁡W
M≔1−2⁢3+25+x2216+3+25+x22+x⁢x&conjugate0;−8⁢3+25+x216+3+25+x22+x⁢x&conjugate0;−2⁢3+25+x2⁢x&conjugate0;16+3+25+x22+x⁢x&conjugate0;−8⁢3+25+x216+3+25+x22+x⁢x&conjugate0;1−3216+3+25+x22+x⁢x&conjugate0;−8⁢x&conjugate0;16+3+25+x22+x⁢x&conjugate0;−2⁢x⁢3+25+x216+3+25+x22+x⁢x&conjugate0;−8⁢x16+3+25+x22+x⁢x&conjugate0;1−2⁢x⁢x&conjugate0;16+3+25+x22+x⁢x&conjugate0;
map⁡simplify,M·V
−25+x2⁢3+25+x2x2+3⁢25+x2+2500
HouseholderMatrix⁡V,5,2,y,conjugate=false
1000001−9⁢y−12⁢y−3⁢y⁢x00−12⁢y1−16⁢y−4⁢y⁢x00−3⁢y⁢x−4⁢y⁢x−y⁢x2+1000001
See Also
LinearAlgebra[DiagonalMatrix]
LinearAlgebra[GivensRotationMatrix]
LinearAlgebra[IdentityMatrix]
LinearAlgebra[OuterProductMatrix]
LinearAlgebra[Transpose]
LinearAlgebra[VectorNorm]
Matrix
Vector
Download Help Document