= Idempotency = '''Idempotency''' refers to any process that has the same outcome whether operated once or many times. <> ---- == Description == An idempotent matrix can be multiplied by another matrix any number of times and the product of the first operation is returned every time. More simply put, an idempotent matrix can be raised to any power and still be equal to the original: '''''A'''^2^ = '''A'''''. For example, the [[LinearAlgebra/Projection|projection matrix]] '''''P''''' is characterized as '''H'''('''H'''^T^'''H''')^-1^'''H'''^T^. If this were squared to '''H'''('''H'''^T^'''H''')^-1^'''H'''^T^'''H'''('''H'''^T^'''H''')^-1^'''H'''^T^, then per the core principle of [[LinearAlgebra/Invertibility|inversion]] (i.e., '''''AA'''^-1^ = '''I'''''), half of the terms would cancel out. '''''P'''^2^ = '''P'''''. Only a square matrix can be idempotent. ---- CategoryRicottone