375 results for "matrix".
-
Ugur's copy of Find eigenvalues, characteristic polynomial and a normalised eigenvector of a 3x3 matrix Ready to useQuestion in Ugur's workspace
Given a 3 x 3 matrix, and two eigenvectors find their corresponding eigenvalues. Also fnd the characteristic polynomial and using this find the third eigenvalue and a normalised eigenvector $(x=1)$.
-
Characteristic poly, eigenvalues and eigenvectors 3x3, digonailsability (non-randomised) Ready to useQuestion in Ugur's workspace
Example of an explore mode question. Student is given a 3x3 matrix and is asked to find the characteristic polynomial and eigenvalues, and then eigenvectors for each eigenvalue. The part asking for eigenvectors can be repeated as often as the student wants, to be used for different eigenvalues.
Assessed: calculating characteristic polynomial and eigenvectors.
Feature: any correct eigenvalue will be recognised by the marking algorithm, even multiples of the obvious one(s) (which can be read off from the reduced row echelon form)
Randomisation: Not randomised, just using particular matrices. I am still working on how to randomise this for 3x3; a randomised 2x2 version exists. I have several different versions for 3x3 (not all published yet), so I could make a random choice between these in a test.
The implementation uses linear algebra functions such as "find reduced echelon form" or "find kernel of a reduced echelon form", from the extension "linalg2".
-
Question in Tamsin's workspace
Cofactors Determinant and inverse of a 3x3 matrix.
-
Question in Tamsin's workspaceTranspose of a matrix
-
Question in Tamsin's workspace
Exercises on calculating the determinant of 2x2 and 3x3 matrices.
-
Question in Tamsin's workspace
Exercises on calculating the determinant of 3x3 matrices.
-
Question in Tamsin's workspace
Find the determinant and inverse of three $2 \times 2$ invertible matrices.
-
Question in Tamsin's workspace
This question tests learner's knowledge of the inverse matrix method for a 3x3 matrix.
-
Question in Tamsin's workspace
Putting a pair of linear equations into matrix notation and then solving by finding the inverse of the coefficient matrix.
-
Exam (2 questions) in Tamsin's workspace
This exam gives an overview of skills studnets require to be able to add and subtract matrices.
-
Question in Tamsin's workspaceMatrix subtraction (student defines dimensions in answer)
-
Question in Tamsin's workspaceScalar Multiplication (pre-defined sizes in answers)
-
Exam (2 questions) in Tamsin's workspace
This exam gives tests for an overview of the skills students need to be able to perfom matrix multiplications.
-
Question in Tamsin's workspace
Multiplication of two matrices.
-
Exam (3 questions) in Tamsin's workspace
This is a collection of questions to test different aspect to consider when representing a matrix.
-
Question in Tamsin's workspace
This question tests understanding of subscript notation for matrices
-
Question in Tamsin's workspaceClassifying matrices (dimensions/order)
-
Question in Tamsin's workspaceIdentify element of a matrix.
-
Question in Tamsin's workspaceMatrix addition (pre-defined dimensions in answer)
-
Question in Demos
A demo of the matrix entry part and its options.
-
Exam (3 questions) in Demos
A few questions which show off the new matrix entry part.
-
Question in How-tos
This shows one way of laying out matrix cells in a table, so that some cells can be filled in by the student.
At the time this was written, there's an open issue for allowing some entries in the matrix entry part to be filled-in, which would make this technique redundant.
Some CSS in the preamble adds the brackets around the table - it has to have the attribute
class="matrix-gaps" -
Question in Content created by Newcastle University
Reduce a 5x6 matrix to row reduced form and using this find rank and nullity.
-
Question in Content created by Newcastle University
Given a generating matrix for a linear code, give a parity check matrix
-
Question in Content created by Newcastle University
Write down the lexicographic parity check matrix and generator matrix for a Hamming code, which is the dual of a Simplex code, then determine if a given word is a codeword of the corresponding Simplex code.
-
Question in Content created by Newcastle University
Given a generating matrix for a binary linear code, construct a parity check matrix, list all the codewords, list all the words in a given coset, give coset leaders, calculate syndromes for each coset, correct a codeword with one error.
-
Question in MATH6058 Engineering Maths 1
Multiplication of $2 \times 2$ matrices.
-
Question in Content created by Newcastle University
Putting a pair of linear equations into matrix notation and then solving by finding the inverse of the coefficient matrix.
-
Question in .Matrix Algebra
Determinant of n x m matrix by Laplace Expansion across top row.
-
Question in Julia Goedecke's contributions
Example of an explore mode question. Student is given a 2x2 matrix and is asked to find the characteristic polynomial and eigenvalues, and then eigenvectors for each eigenvalue. The part asking for eigenvectors can be repeated as often as the student wants, to be used for different eigenvalues.
Assessed: calculating characteristic polynomial and eigenvectors.
Feature: any correct eigenvector is recognised by the marking algorithm, also multiples of the "obvious" one(s) (given the reduced row echelon form that we use to calculate them).
Randomisation: a random true/false for invertibility is created, and the eigenvalues a and b are randomised (condition: two different evalues, and a=0 iff invertibility is false), and a random invertible 2x2 matrix with determinant 1 or -1 is created (via random elementary row operations) to change base from diag(a,b) to the matrix for the question. Determinant 1 or -1 ensures that we keep integer entries.
The implementation uses linear algebra functions such as "find reduced echelon form" or "find kernel of a reduced echelon form", from the extension "linalg2".