Converting base 10 numbers to base 2

Converting integers to base 2 is reasonably easy.

For example, what is 82 in base 2?

Think about powers of 2

n2^n
01 (‘ones’)
12 (‘tens’)
24 (‘hundreds)
38 (‘thousands’)

Make 82 the sum of powers of 2.

82=64+16+2=1\times 2^6+0\times 2^5+ 1\times 2^4+0\times 2^3+0\times 2^2+1 \times 2^1+0\times 2^0=1010010

We follow the same approach for real numbers

n2^n
-3\frac{1}{8}=0.125
-2\frac{1}{4}=0.25
-1\frac{1}{2}=0.5
01 (‘ones’)
12 (‘tens’)
24 (‘hundreds)
38 (‘thousands’)

Convert 0.765625 to base 2

0.765625\times 2=1.53125 the first number is 1

0.53125\times 2=1.0625 the second number is 1

0.0625\times 2=0.125 the third number is 0

0.125\times 2=0.25 the fourth number is 0

0.25\times 2=0.5 the fifth number is 0

0.5\times 2=1 the sixth number is 1 and we have finished

0.765625=0.110001_2

What about something like 2.\overline{4}?

The non-decimal part 2=10

0.\overline{4}\times 2=0.\overline{8} first number is zero

0\overline{8}\times 2=1.\overline{7} second number is 1

0.\overline{7}\times 2=1.\overline{5} third number is 1

0.\overline{5}\times 2=1.\overline{1} fourth number is 1

0.\overline{1}\times 2=0.\overline{2} fifth number is 0

0.\overline{2}\times 2=0.\overline{4} sixth number is 0

We are back to where we started, so 2.\overline{4}=10.0111000111000..._2=10.\overline{0.11100}_2

Leave a Comment

Filed under Arithmetic, Decimals, Fractions, Number Bases

Geometry Problem

Geometry Snacks by Ed Southall and Vincent Pantaloni

I started by trisecting another side of the triangle

This makes it clearer that the two lines are parallel

Which means the two angles labelled above are corresponding and therefore congruent.

Let the side length be x.

The area of the equilateral triangle is

(1)   \begin{equation*}A=\frac{1}{2}x^2 sin(60)=\frac{\sqrt{3}x^2}{4}\end{equation*}

    \begin{equation*}cos(60)=\frac{y}{\frac{2x}{3}}\end{equation}

    \begin{equation*}y=\frac{x}{3}\end{equation}

Area of right triangle

(2)   \begin{equation*}A=(\frac{1}{2})(\frac{2x}{3})(\frac{x}{3})sin(60)=\frac{\sqrt{3}x^2}{18}\end{equation*}

The fraction of the area is

    \begin{equation*}=\frac{\frac{\sqrt{3}x^2}{18}}{\frac{\sqrt{3}x^2}{4}}=\frac{2}{9}\end{equation}

Leave a Comment

Filed under Algebra, Area, Area of Triangles (Sine), Finding an area, Geometry, Puzzles, Right Trigonometry, Simplifying fractions, Trigonometry

Eigenvalues and Eigenvectors

My Year 11 Specialist students have had an investigation which involves finding eigenvalues, eigenvectors and lines that are invariant under a particular linear transformation. This is not part of the course, but I feel for teachers who have to create new investigations every year.

Let’s find the eigenvalues and eigenvectors for matrix T=\begin{bmatrix}-\frac{1}{2}&-\frac{\sqrt{3}}{2}\\-\frac{\sqrt{3}}{2}&\frac{1}{2}\end{bmatrix}

We want to find \lambda such that

(1)   \begin{equation*}T\textbf{v}=\lambda \textbf{v}\end{equation*}

We solve det(T-\lambda I)=0

    \begin{equation*}T-\lambda I=\begin{bmatrix}-\frac{1}{2}-\lambda&-\frac{\sqrt{3}}{2}\\-\frac{\sqrt{3}}{2}&\frac{1}{2}-\lambda\end{bmatrix}\end{equation}

det\left (T-\lambda I \right )=\left (-\frac{1}{2}-\lambda \right ) \left ( \frac{1}{2}-\lambda \right )- \left (-\frac{\sqrt{3}}{2} \right ) \left ( -\frac{\sqrt{3}}{2} \right )

Hence 0=\lambda^2-1 and \lambda=\pm 1

When \lambda=1, \begin{bmatrix}-\frac{1}{2}&-\frac{\sqrt{3}}{2}\\-\frac{\sqrt{3}}{2}&\frac{1}{2}\end{bmatrix}\begin{bmatrix}x_1\\x_2\end{bmatrix}=\begin{bmatrix}x_1\\x_2\end{bmatrix}

Hence, -\frac{x_1}{2}-\frac{\sqrt{3}x_2}{2}=x_1

x_2=-\frac{3x_1}{\sqrt{3}} and the eigenvector is \begin{bmatrix}1\\-\sqrt{3}\end{bmatrix}

When \lambda=-1, \begin{bmatrix}-\frac{1}{2}&-\frac{\sqrt{3}}{2}\\-\frac{\sqrt{3}}{2}&\frac{1}{2}\end{bmatrix}\begin{bmatrix}x_1\\x_2\end{bmatrix}=\begin{bmatrix}-x_1\\-x_2\end{bmatrix}

Hence, -\frac{x_1}{2}-\frac{\sqrt{3}x_2}{2}=-x_1

x_2=\frac{x_1}{\sqrt{3}} and the eigenvector is \begin{bmatrix}1\\\frac{1}{\sqrt{3}}\end{bmatrix}

Which means the invariant lines are y=-\sqrt{3}x and y=\frac{x}{\sqrt{3}}

A quadrilateral with vertices on our lines
The vertices after they have been transformed – A and C remain in the same place (they are on the \lambda=1 line)
The quadrilateral (purple) after the transformation

Leave a Comment

Filed under Co-ordinate Geometry, Eigenvalues, Matrices, Transformations, Vectors, Year 11 Specialist Mathematics

Divisibility Rule for 11

I was working on a question and involved 11 and I wondered what the divisibility rule was?

So then I had a bit of a think about it.

Let N be a number divisible by 11. The N (mod11)=0

    \begin{equation*}N=a_n\times10^n+a_{n-1}\times10^{n-1}+a_{n-2}\times10^{n-2}+...+a_0\times10^0\end{equation}

    \begin{equation*}0=a_n\times10^n (mod11)+a_{n-1}\times10^{n-1}(mod11)+a_{n-2}\times10^{n-2}(mod11)+...+a_0\times10^0(mod11)\end{equation}

Now 10 (mod11)=10 which is congruent to -1 because 10-(-1)=11, which is a multiple of 11.

Thus

    \begin{equation*}0=a_n(-1)^n+a_{n-1}(-1)^{n-1}+a_{n-2}(-1)^{n-2}+...+a_0(-1)^0\end{equation}

Odd powers will be negative and even positive.

So if we start at one end of the number and add every second digit (i.e. first digit plus third digit plus fifth digit etc.) and then subtract the other digits (i.e. second digit, fourth digit, six digit, etc.), if that equals zero then the number is divisible by 11.

For example, is 1756238 divisible by 11?

1+5+2+8-7-6-3=16-16=0

Hence 1756238 is divisible by 11

Leave a Comment

Filed under Algebra, Arithmetic, Divisibility, Index Laws, Interesting Mathematics, Number Bases

Deriving the sum formula for an Arithmetic Progression

Arithmetic progressions (or arithmetic sequences) are sequences with a common difference (i.e. the same number is added or subtracted to get the next number in the sequence).

For example,

2, 5, 8, 11, 14, ...

or

12,10, 8, 6, 4, ...

The n^{th} term of an arithmetic progression is T_n=a+(n-1)d where a is the first term and d is the common difference.

i.e. For the sequence above, T_4=12+(4-1)(-2)=6

An arithmetic series is the sum of the arithmetic progression.

For example, if the sequence is

3, 7, 11, 15, ...

then S_1=3, S_2=3+7=10, S_3=3+7+11=21

The series is also a sequence and we are going to find the general term, S_n.

    \begin{equation*}S_n=T_1+T_2+T_3+...+T_n\end{equation}

which we can write as

    \begin{equation*}S_n=a+a+d+a+2d+...+a+(n-1)d\end{equation}

Now, I am going to write that in reverse order (to make the next bit more obvious)

    \begin{equation*}S_n=a+(n-1)d+a+(n-2)d+a+(n-3)d+ ... +a\end{equation}

I am going to add the two versions of S_n together

Each term has an a and there are n terms, so we now have 2na. The d terms, we going to group together

d+(n-1)d+2d+(n-2)d+3d+(n-3)d+ ... +(n-1)d+d

Which simplifies to nd+nd+nd+ ...+nd and we have (n-1) d terms. So this part of the sum is (n-10nd

Thus we have

    \begin{equation*}2S_n=2an+(n-1)nd\end{equation}

Which simplifies to

(1)   \begin{equation*}S_n=\frac{n}{2}(2a+(n-1)d)\end{equation*}

Let’s test it, remember the sequence 3, 7, 11, 15, .... We know S_3=21

    \begin{equation*}S_3=\frac{3}{2}(2(3)+(3-1)(4))=\frac{3}{2}(14)=21\end{equation}

Leave a Comment

Filed under Algebra, Arithmetic, Sequences, Year 11 Mathematical Methods

Linear Transformation (Rotation) Question

The unit square is rotated about the origin by 45^\circ anti-clockwise.
(a) Find the matrix of this transformation.
(b) Draw the unit square and its image on the same set of axes.
(c) Find the area of the over lapping region.

Remember the general rotation matrix is

    \begin{equation*}\begin{bmatrix}cos(\theta)&-sin(\theta)\\sin(\theta)&cos(\theta)\end{bmatrix}\end{equation}

Hence

    \begin{equation*}\begin{bmatrix}cos(45)&-sin(45)\\sin(45)&cos(45)\end{bmatrix}=\begin{bmatrix}\frac{1}{\sqrt{2}}&-\frac{1}{\sqrt{2}}\\\frac{1}{\sqrt{2}}&\frac{1}{\sqrt{2}}\end{bmatrix}\end{equation}

The unit square has co-ordinates

\begin{bmatrix}0 & 1 & 1& 0\\0&0&1&1\end{bmatrix}

Unit Square

Transform the unit square

\begin{bmatrix}\frac{1}{\sqrt{2}}&-\frac{1}{\sqrt{2}}\\ \frac{1}{\sqrt{2}}&\frac{1}{\sqrt{2}}\end{bmatrix}\begin{bmatrix}0 & 1 & 1& 0\\0&0&1&1\end{bmatrix}=\begin{bmatrix}0&\frac{1}{\sqrt{2}}&0&-\frac{1}{\sqrt{2}}\\0&\frac{1}{\sqrt{2}}&\frac{2}{\sqrt{2}}&\frac{1}{\sqrt{2}}\end{bmatrix}

Unit Square and Transformed Unit Square

The overlapping area is the area of \Delta ADC– the area of \Delta EFC

We know \angle{FCE}=45^\circ because the diagonal of a square bisects the angle.

We know\angle{EFC} is a right angle as it’s on a straight line with the vertex of a square.

Hence \Delta EFC is isosceles.

\overline{AC}=\sqrt{1^2+1^2}=\sqrt{2} and \overline{AF}=1, hence \overline{FC}=\sqrt{2}-1

A_{\Delta ADC}=\frac{1}{2}(1)(1)=\frac{1}{2}

A_{\Delta ECF}=\frac{1}{2}(\sqrt{2}-1)(\sqrt{2}-1)

Area of shaded region =\frac{1}{2}-\frac{1}{2}(3-2\sqrt{2})=\sqrt{2}-1

Leave a Comment

Filed under Area, Co-ordinate Geometry, Finding an area, Geometry, Matrices, Transformations, Year 11 Specialist Mathematics

Clock (Geometry Question)

At what time after 2pm will the minute hand over take the hour hand?

Let the distance the minute hand moves be x^\circ. Then the distance the hour hand moves is x-60^\circ (The angle between the hands at 2pm is 60^\circ)

The rate the hour hand moves is R_H=\frac{30}{60}=\frac{1}{2}^\circ per minute, and the rate the minute hand moves is R_M=\frac{360}{60}=6^\circ per minute.

The time is the distance divided by the rate,

    \begin{equation*}\frac{x}{6}=\frac{x-60}{\frac{1}{2}}\end{equation}

    \begin{equation*}\frac{x}{2}=6x-360\end{equation}

    \begin{equation*}360=\frac{11x}{2}\end{equation}

    \begin{equation*}x=65\frac{5}{11}^\circ\end{equation}

As the minute hand moves 65\frac{5}{11}^\circ, the change in time is 65\frac{5}{11}^\circ \div 6=10 minutes and 54 seconds. Hence the time is 2:11pm

Leave a Comment

Filed under Finding an angle, Geometry, Puzzles

Area Problem

Two rectangular garden beds have a combined area of 40m^2. The larger bed has twice the perimeter of the smaller and the larger side of the smaller bed is equal to the smaller side of the larger bed. If the two beds are not similar, and if all edges are a whole number of metres, what is the length, in metres, of the longer side of the larger bed?
AMC 2007 S.14

Let’s draw a diagram

From the information in the question, we know

(1)   \begin{equation*}xy+xz=40\end{equation*}

and

    \begin{equation*}2x+2y=4x+4z\end{equation}

    \begin{equation*}x+y=2x+2z\end{equation}

    \begin{equation*}x+y=2x+2z\end{equation}

(2)   \begin{equation*}y=x+2z\end{equation*}

Equation 1 becomes

    \begin{equation*}x(x+3z)=40\end{equation}

As the sides are whole numbers, consider the factors of 40.

1, 2, 4, 5, 8, 10, 20, 40

Remember z<x<y

xx+3zzyPerimeter LargePerimeter SmallComment
2206x must be greater than z
410282(4+8)=242(2+4)=12This one works
58172(5+7)=242(5+1)=12This one also works
810\frac{2}{3}z not a whole number
104z<0Not possible
202z<0
Not possible
401z<0Not possible

There are two possibilities

The large garden bed could be 4 by 8 and the smaller 4 by 2 (Area 40 Perimeters 24 and 12)

or

The large garden bed could be 5 by 7 and the smaller 5 by 1 (Area 40 Perimeters 24 and 12)

Leave a Comment

Filed under Area, Interesting Mathematics, Measurement, Puzzles, Solving Equations, Year 8 Mathematics

Matrices -Linear Transformations (Rotation)

We are going to find a matrix to rotate a point about the origin a number of degrees (or radians).

We want to find P'(c, d)

P and P' are equidistant from the origin. I.e. \sqrt{c^2+d^2}=\sqrt{a^2+b^2}

Remember, anti-clockwise angles are positive.

    \begin{equation*}cos(\theta+\alpha)=\frac{c}{\sqrt{c^2+d^2}}\end{equation}

    \begin{equation*}c=\sqrt{a^2+b^2}cos(\theta+\alpha)\end{equation}

Use the cosine addition identity.

    \begin{equation*}c=\sqrt{a^2+b^2}(cos(\theta)cos(\alpha)-sin(\theta)sin(\alpha))\end{equation}

    \begin{equation*}c=\sqrt{a^2+b^2}(cos(\theta)\frac{a}{\sqrt{a^2+b^2}}-sin(\theta)\frac{b}{\sqrt{a^2+b^2}})\end{equation}

(1)   \begin{equation*}c=acos(\theta)-bsin(\theta)\end{equation*}

We will do the same for d

    \begin{equation*}sin(\theta+\alpha)=\frac{d}{\sqrt{a^2+b^2}}\end{equation}

    \begin{equation*}d=\sqrt{a^2+b^2}sin(\theta+\alpha)\end{equation}

Use the sine addition identity.

    \begin{equation*}d=\sqrt{a^2+b^2}(sin(\theta)cos(\alpha)+cos(\theta)sin(\alpha)\end{equation}

    \begin{equation*}d=\sqrt{a^2+b^2}(sin(\theta)\frac{a}{\sqrt{a^2+b^2}}+cos(\theta)\frac{b}{\sqrt{a^2+b^2}})\end{equation}

(2)   \begin{equation*}d=asin(\theta)+bcos(\theta)\end{equation*}

Let R be the rotation matrix, then

    \begin{equation*}R\begin{bmatrix}a\\b\end{bmatrix}=\begin{bmatrix}acos(\theta)-bsin(\theta)\\asin(\theta)+bcos(\theta)\end{bmatrix}\end{equation}

Hence R must be

(3)   \begin{equation*}R=\begin{bmatrix}cos(\theta)&-sin(\theta)\\sin(\theta)&cos(\theta)\end{bmatrix}\end{equation*}

Example

Find the image of the line y=x+1 after it is rotated 60^\circ about the origin.

I am going to select two points on the line and transform them.

    \begin{equation*}\begin{bmatrix}cos(60)&-sin(60)\\sin(60)&cos(60)\end{bmatrix}\begin{bmatrix}0&4\\1&5\end{bmatrix}=\begin{bmatrix}x'_1&x'_2\\y'_1&y'_2\end{bmatrix}\end{equation}

    \begin{equation*}\begin{bmatrix}\frac{1}{2}&-\frac{\sqrt{3}}{2}\\\frac{\sqrt{3}}{2}&\frac{1}{2}\end{bmatrix}\begin{bmatrix}0&4\\1&5\end{bmatrix}=\begin{bmatrix}x'_1&x'_2\\y'_1&y'_2\end{bmatrix}\end{equation}

    \begin{equation*}\begin{bmatrix}-\frac{\sqrt{3}}{2}&\frac{4-5\sqrt{3}}{2}\\\frac{1}{2}&2\sqrt{3}+\frac{5}{2}\end{bmatrix}=\begin{bmatrix}x'_1&x'_2 \\y'_1&y'_2\end{bmatrix}\end{equation}

We can then find the equation of the line.

    \begin{equation*}m=\frac{2\sqrt{3}+\frac{5}{2}-\frac{1}{2}}{\frac{4-5\sqrt{3}+\sqrt{3}}{2}}\end{equation}

    \begin{equation*}m=-2-\sqrt{3}\end{equation}

    \begin{equation*}y-\frac{1}{2}=(-2-\sqrt{3})(x+\frac{\sqrt{3}}{2})\end{equation}

    \begin{equation*}y=(-2-\sqrt{3})x-1-\sqrt{3}\end{equation}

Leave a Comment

Filed under Addition and Subtraction Identities, Identities, Matrices, Transformations, Trigonometry, Year 11 Specialist Mathematics

Matrices – Linear Transformations (reflection in y=mx)

We are going to derive the transformation matrix for a reflection across a line y=mx.

Reflecting P across the line to P'

Things to remember about a reflection:

  • The distance between P' and the line is same as the distance between P and the line. Hence M is the midpoint of P and P'.
  • The line segment joining P and P' is perpendicular to the line.

Our aim is to find a general identity for P' and then use that to derive a transformation matrix.

Let’s start by finding the equation of the line joining P and P'.

We know the gradient of this line is perpendicular to the gradient of y=mx, hence the gradient is -\frac{1}{m}.

    \begin{equation*}y-y_0=-\frac{1}{m}(x-x_0)\end{equation}

And (a,b) is a point on the line.

    \begin{equation*}y-b=-\frac{1}{m}(x-a)\end{equation}

Which simplifies to

(1)   \begin{equation*}y=-\frac{1}{m}x+\frac{a+bm}{m}\end{equation*}

We are going to find the co-ordinates of M in two ways; as the midpoint of P and P', and as the point of intersection of y=mx and y=-\frac{1}{m}x+\frac{a+bm}{m}

As the midpoint of P and P'

(2)   \begin{equation*}M=(\frac{a+c}{2}, \frac{b+d}{2})\end{equation*}

As the point of intersection of y=mx and y=-\frac{1}{m}x+\frac{a+bm}{m}

    \begin{equation*}mx=-\frac{1}{m}x+\frac{a+bm}{m}\end{equation}

    \begin{equation*}mx+\frac{x}{m}=\frac{a+bm}{m}\end{equation}

    \begin{equation*}\frac{m^2x+x}{m}=\frac{a+bm}{m}\end{equation}

    \begin{equation*}x(m^2+1)=a+bm\end{equation}

    \begin{equation*}x=\frac{a+bm}{m^2+1}\end{equation}

Substitute x into y=mx

    \begin{equation*}y=\frac{am+bm^2}{m^2+1}\end{equation}

(3)   \begin{equation*}M=(\frac{a+bm}{m^2+1},\frac{am+bm^2}{m^2+1})\end{equation*}

M must equal M, hence we can find (c, d) in terms of (a, b)

Equate equation 2 and 3

    \begin{equation*}\frac{a+c}{2}=\frac{a+bm}{m^2+1}\end{equation}

    \begin{equation*}a+c=2(\frac{a+bm}{m^2+1})\end{equation}

    \begin{equation*}c=2(\frac{a+bm}{m^2+1})-a\end{equation}

    \begin{equation*}c=\frac{2a+2bm-am^2-a}{m^2+1}\end{equation}

    \begin{equation*}c=\frac{a+2bm-am^2}{m^2+1}\end{equation}

(4)   \begin{equation*}c=\frac{1-m^2}{m^2+1}a+\frac{2m}{m^2+1}b\end{equation*}

And

    \begin{equation*}\frac{b+d}{2}=\frac{am+bm^2}{m^2+1}\end{equation}

    \begin{equation*}b+d=2(\frac{am+bm^2}{m^2+1})\end{equation}

    \begin{equation*}d=2(\frac{am+bm^2}{m^2+1})-b\end{equation}

    \begin{equation*}d=\frac{2am+2bm^2-bm^2-b}{m^2+1}\end{equation}

    \begin{equation*}d=\frac{2m}{m^2+1}a+\frac{m^2-1}{m^2+1}b\end{equation}

    \begin{equation*}d=\frac{2m}{m^2+1}a-\frac{-m^2+1}{m^2+1}b\end{equation}

(5)   \begin{equation*}d=\frac{2m}{m^2+1}a-\frac{1-m^2}{m^2+1}b\end{equation*}

Hence P'=(\frac{1-m^2}{m^2+1}a+\frac{2m}{m^2+1}b, \frac{2m}{m^2+1}a-\frac{1-m^2}{m^2+1}b)

For ease of writing, let p=\frac{1-m^2}{m^2+1} and q=\frac{2m}{m^2+1}

Then

P'=(pa+qb, qa-px), which we can generalise to (px+qy, qx-py)

Now let’s think about a transformation matrix, we want to transform (x, y) to (px+qy, qx-py)

    \begin{equation*}\begin{bmatrix}p&q\\q &-p\end{bmatrix}\begin{bmatrix}x\\y\end{bmatrix}=\begin{bmatrix}px+qy\\qx-py\end{bmatrix}\end{equation}

Remember the gradient of a line is the tangent of the angle of inclination, tan(\theta)=m

    \begin{equation*}p=\frac{1-m^2}{m^2+1}=\frac{1-tan^2(\theta)}{tan^2(\theta)+1}\end{equation}

Remember the identity

    \begin{equation*}tan^2(\theta)+1=sec^2(\theta)\end{equation}

    \begin{equation*}p=\frac{1-(sec^2(\theta)-1)}{sec^2(\theta)}\end{equation}

    \begin{equation*}p=\frac{2-sec^2(\theta)}{sec^2(\theta)}\end{equation}

    \begin{equation*}p=\frac{2}{sec^2(\theta)}-\frac{sec^2(\theta)}{sec^2(\theta)}\end{equation}

    \begin{equation*}p=2cos^2(\theta)-1\end{equation}

(6)   \begin{equation*}p=cos(2\theta)\end{equation*}

And we will do the same for q.

    \begin{equation*}q=\frac{2m}{m^2+1}=\frac{2tan(\theta)}{tan^2(\theta)+1}\end{equation}

    \begin{equation*}q=\frac{\frac{2sin(\theta)}{cos(\theta)}}{sec^2(\theta)}\end{equation}

    \begin{equation*}q=\frac{2sin(\theta)}{cos(\theta)} \times cos^2(\theta)\end{equation}

    \begin{equation*}q=2sin(\theta)cos(\theta)\end{equation}

(7)   \begin{equation*}q=sin(2\theta)\end{equation*}

Hence our transformation matrix is

(8)   \begin{equation*}\begin{bmatrix}cos(2\theta)&sin(2\theta)\\sin(2\theta)&-cos(2\theta)\end{bmatrix}\end{equation*}

Example

The vertices of a triangle T are A(-3, 1), B(6, -4) and C(1, 5). T' is a reflection of T in the line y-x=0

The gradient of the line y=x is 1.

    \begin{equation*}tan(\theta)=1\end{equation}

    \begin{equation*}\theta=\frac{\pi}{4}\end{equation}

Our transformation matrix is

    \begin{equation*}\begin{bmatrix}cos(\frac{\pi}{2})&sin\frac{\pi}{2})\\sin\frac{\pi}{2})&-cos(\frac{\pi}{2})\end{bmatrix}\end{equation}

Which is

    \begin{equation*}\begin{bmatrix}0&1\\1&0\end{bmatrix}\end{equation}

So

    \begin{equation*}T'=\begin{bmatrix}0&1\\1&0\end{bmatrix}\begin{bmatrix}-3&6&1\\1&-4&5\end{bmatrix}\end{equation}

    \begin{equation*}T'=\begin{bmatrix}1&-4&5\\-3&6&1\end{bmatrix}\end{equation}

Leave a Comment

Filed under Matrices, Transformations