8

I was going through my school papers and found an interesting question, so I experimented a bit more and found out a pattern, so I made a formula for such matrices.

$$A = \begin{bmatrix}x&-(x-1)\\x+1&-x\end{bmatrix}$$ where $x > 0$ is an integer

$$A^n = \begin{cases} I, & \text{if $n$ is even} \\ A, & \text{if $n$ is odd} \end{cases}$$ where $I$ is identity matrix of order 2.

I just wanted to know if this has been found before or whether it has a name too or if there are some cases that does not obey this.

Hope someone can format my question properly, I'm new to this community. Hope this is the correct way of putting things together too. Thanks!!

  • 1
    Do you mean for $x$ to be an integer? What is $f$, other than the definition you give? I don't understand what pattern you see. – saulspatz Nov 30 '20 at 18:57
  • 1
    What is the context/motivation for defining $A$ and $f$? There's no reason why you can't define a function $f\colon \mathbb{Z}^{+} \to \mathbb{Z}^{2\times 2}$, but from your question there's also not a clear reason why you would want to. – DMcMor Nov 30 '20 at 19:00
  • @DMcMor I meant for A to be just a name given to the matrix and I is identity matrix, am an high school student, so dont know how to put things together. – Delrius Euphoria Nov 30 '20 at 19:04
  • @saulspatz Just wanted to know if this has been noticed before by someone else. – Delrius Euphoria Nov 30 '20 at 19:05
  • 1
    That's all very well, but it's not clear to me what you have noticed. Can you give a concrete example? – saulspatz Nov 30 '20 at 19:07
  • @saulspatz I was being stupid, I've updated the question now. – Delrius Euphoria Nov 30 '20 at 19:10
  • Specifically, it's not clear what you are referring to when you say 'found out a pattern', 'for such matrices', and 'does not obey this'. It seems that the bolded items are referring to something you left out of the question. – DMcMor Nov 30 '20 at 19:13
  • 1
    If you are referring to the property of matrix $A$, it simply means that $A$ is its own inverse, that is, $A^{-1}=A$. – NoName Nov 30 '20 at 19:16
  • 1
    @DMcMor Is it still unclear? What i mean is if you make a matrix by putting in a value for x, and call it matrix A. when this A is raised to even numbers, it will give identity matrix and when it is raised to odd numbers it will give the same matrix A. – Delrius Euphoria Nov 30 '20 at 19:16
  • @NoName So A will be matrix whose inverse is same as the matrix itself? So the formula in the question is to find out a matrix where $A^{-1}=A$? – Delrius Euphoria Nov 30 '20 at 19:21

2 Answers2

12

Thank you for addressing our comments and clarifying your question! Any square matrix which satisfies your equation $$A^n = \begin{cases} I, & \text{if $n$ is even} \\ A, & \text{if $n$ is odd} \end{cases}$$ is its own inverse, i.e. it is an involutory matrix. This is because if $n = 2$ you have $AA = I$, which by definition means that $A$ is its own inverse. From that simple statement you can extrapolate your formula, because if $n$ is even then $$A^{n} = A^{2m} = (AA)^{m} = I^{m} = I$$ for some integer $m$, and if $n$ is odd then $$A^{n} = A^{2k+1}=A^{2k}A=(AA)^{k}A = I^{k}A=IA=A$$ for some integer $k$. In fact, for any $2\times 2$ matrix $$\begin{pmatrix} a & b\\c & -a\end{pmatrix},$$ of which your matrix is an example, such a matrix will be involutory if $a^{2} + bc = 1$. We can verify this for your matrix $A$: $$x^{2} - (x-1)(x+1) = 1.$$

DMcMor
  • 9,407
6

You simply have $A^2=I$, from which it follows that $A^3=AA^2=AI=A$, $A^4= AA^3=AA=A^2=I$ and so on. Of course $A^2=I$ is the same as saying that $A=A^{-1}$ so that $A$ is its own inverse.

This is sometimes stated as $A$ is self-inverse, or that $A$ is an involution, in more highfalutin language.

saulspatz
  • 53,131