7.2.4 Tensor Component Value Area
The Tensor Component Value Area defines the spatial range where tensor components exist, governed by coordinate systems and transformation rules in algebraic structures.
Tensor Component Value Area is the region of a tensor's index space, together with the numerical value attached to each point of that region, that results from evaluating a tensor at a fixed choice of indices in a given basis. Where a tensor as a whole is a multilinear object independent of any coordinate system, a component value area isolates one scalar entry, or a coherent block of entries, produced once a basis has been selected, and records both where that entry sits inside the index grid and what magnitude it carries.
Definition and Scope
Fixing the Indices
A tensor of type ((p,q)) on a vector space of dimension (n) has components indexed by (p) upper indices and (q) lower indices, each ranging over (1,\dots,n). Selecting one specific tuple of indices, for example (i = 2), (j = 3), (k = 1) for a rank-3 tensor, identifies a single cell in the component array. The value stored in that cell is the component value; the coordinate position of the cell within the array is the component's area of residence.
From Single Cell to Value Area
A value area need not collapse to a single number. By holding some indices fixed and letting others range freely, a sub-block of the full component array is carved out. Fixing only the upper index (i) of a ((1,2)) tensor, for instance, leaves a two-dimensional slice (T^{i}_{\phantom{i}jk}) for that fixed (i), which is itself a value area spanning (n^2) entries.
Structural Properties
Basis Dependence
Because a component value area is read directly off a coordinate representation, it changes under a change of basis even though the tensor itself does not. Under a linear transformation with matrix (A), a component transforms as
so the numerical content of a value area is only meaningful relative to the basis in which it was read.
Range and Bounding
For tensors built from bounded or normalized data, such as unit vectors or orthonormal frames, the values occurring within a component area are themselves bounded. The maximum magnitude any single component of a tensor built from vectors of norm at most (M) can attain is governed by the norms of the factors and the operations combining them, giving a practical ceiling on the value area without requiring the full tensor to be recomputed.
Role Within Tensor Algebra
Locating Symmetric and Antisymmetric Blocks
When a tensor carries symmetry under index exchange, the value areas linked by that symmetry are forced to agree, while under antisymmetry they are forced to be negatives of one another. Mapping out which value areas are tied together in this way is a direct route to identifying the independent components of a tensor, since only one representative value per equivalence class needs to be stored.
Relation to Rank and Trace
Summing component value areas along matched upper and lower indices produces a contraction, reducing rank by two. The trace of a ((1,1)) tensor, for example, is obtained by adding the value areas that sit on the diagonal, (i = j), of its component array.
Use in Computation
Numerical tensor libraries store components in flat memory arrays, and a value area corresponds directly to a contiguous or strided slice of that array. Operations such as extracting a sub-tensor, applying an elementwise function, or checking a numerical tolerance all act on a value area rather than on the tensor as an abstract multilinear map, making the notion the practical bridge between the abstract algebraic object and its stored representation.