ericm1234
- 71
- 2
Let's say I have a vector (4+2i, 1-i), how do I take an L2 norm?
Dont tell me I simply do sqrt(16+4+1+1)..?
Dont tell me I simply do sqrt(16+4+1+1)..?
The L2 norm for a complex-valued vector, such as (4+2i, 1-i), is calculated using the formula ||v||_2 = sqrt(v^* v), where v^* represents the conjugate transpose of the vector. In this case, the conjugate transpose is v^* = (4-2i, 1+i). The computation of v^* v results in the expression (4-2i)(4+2i) + (1+i)(1-i), which simplifies to 16 + 4 + 1 + 1. Thus, the L2 norm is ||v||_2 = sqrt(22).
PREREQUISITESMathematicians, data scientists, engineers, and students studying linear algebra or complex analysis will benefit from this discussion on calculating the L2 norm for complex-valued vectors.
The short answer is yes, you simply do sqrt(16+4+1+1). Here is why:ericm1234 said:Let's say I have a vector (4+2i, 1-i), how do I take an L2 norm?
Dont tell me I simply do sqrt(16+4+1+1)..?