Let g ( A ) : A → A T , g n ( A ) = ( g ∘ g ∘ g ∘ ⋯ ∘ g ) ( A ) , n times, and let A be the following matrix:
A = ⎣ ⎡ x e ⋅ s i n ( x ) 8 y x 2 − ( y + 1 ) x y 4 ⋅ sgn ( sin ( 2 0 2 1 y 3 ) ) y x 9 0 − x 2 + 9 1 sgn ( y ) − y 1 8 2 5 3 y ⎦ ⎤
Find the sum of the pair ( x , y ) , namely x + y , such that n → ∞ lim g n ( A ) is defined, if x , y are unique. If there are multiple solutions for x and y , input the sum of sums of all such pairs.
Notation: sgn ( x ) : = ⎩ ⎨ ⎧ − 1 0 1 if x < 0 if x = 0 if x > 0 denotes the sign function.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Amazing problem! Shame for me that I don't know matrices to be able to solve it. Hope you keep uploading more!
Log in to reply
Thanks :D I will keep uploading, I just hope I'll be able to come up with these problems frequently enough..
Problem Loading...
Note Loading...
Set Loading...
If we transpose a matrix, we flip it over its main diagonal. If we transpose it one more time, we return it to its initial state. In general, transposing a matrix will always yield a different matrix unless that matrix is symmetrical. So if we transpose a matrix a very large number of times, we can't be certain whether it will land at its initial state or at its transposed state, again, unless it's symmetrical - because then the limit is just the identity operator - i.e. it does nothing to the matrix. So, the takeaway is that we need the matrix to be symmetrical for this limit to be well defined.
This means that the following three equations should be satisfied:
sgn ( y ) = 1
x 2 − ( y + 1 ) x = − y
8 y = y 4 ⋅ sgn ( sin ( 2 0 2 1 y 3 ) )
From s g n ( y ) = 1 we have y > 0 . The logical next step is to solve for y in the third equation. Taking the absolute value on both sides, we get:
∣ 8 y ∣ = ∣ y 4 ⋅ sgn ( sin ( 2 0 2 1 y 3 ) ) ∣
∣ 8 y ∣ = ∣ y 4 ∣ - since sin ( 2 0 2 1 y 3 ) is an odd function.
8 y = y 4 , − 8 y = y 4
After solving these equations we get y ∈ − 2 , 0 , 2 , and since y > 0 , we get that y = 2 . Now we solve for x in the 2nd equation:
x 2 − 3 x = − 2
After solving this we get x ∈ 2 , 1 . So the solutions are ( x , y ) = ( 1 , 2 ) , ( 2 , 2 ) . So the solution is 1 + 2 + 2 + 2 = 7 .