Save
Computational
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Mary Idah
Visit profile
Cards (441)
Equation
An expression of the shape A = B, where A and B are expressions containing one or several variables called
unknowns
View source
Algebraic equation
An equation in which
both sides
are
polynomials
View source
System of
polynomial
equations
A set of simultaneous equations f1 = 0, ..., fh = 0 where the fi are polynomials in several variables, say x1, ...,
xn
, over some field
k
View source
Linear equation
An algebraic equation in which each term is either a constant or the product of a constant and (the
first power
of) a
single variable
View source
Linear equation
General (or standard) form:
Ax
+ By = C, where A and B are not both
equal
to zero
Slope-intercept form: y =
mx
+ b, where m is the slope and
b
is the y-intercept
Point-slope
form
: y - y1 = m(x -
x1
), where m is the slope and (x1,y1) is any point on the line
Two-point form: (y2 - y1)/(x2 -
x1
) = (y - y1)/(x -
x1
), where (x1, y1) and (x2, y2) are two points on the line
Intercept form: x/a + y/b = 1, where a and b must be nonzero
Matrix form: Ax = b, where A is a matrix and x and b are vectors
View source
Quadratic equation
A
univariate polynomial
equation of the second
degree
, in the form ax^2 + bx + c = 0, where a, b, and c are constants with a ≠ 0
View source
Methods to solve quadratic equations
1.
Quadratic
formula
2.
Factoring
3.
Completing
the square
4.
Graphing
View source
The
solution
of a quadratic equation is the value of x when you set the equation equal to
zero
View source
The quadratic formula is: x = (-b ± √(b^2 -
4ac
)) / (
2a
)
View source
Factoring a quadratic equation involves finding
two
factors of the constant term c that add up to the
coefficient
b
View source
Solving a quadratic equation by factoring
Step 1) Create a
factor chart
to find
factor pairs
of c
Step 2) Out of all of the
factor pairs
from step 1, look for the
pair
(if it exists) that add up to b
Step 3) Insert the
pair
you found in step 2 into two
binomials
Step 4) Solve each binomial for
zero
to get the solutions of the
quadratic equation
View source
Perfect
square trinomial
A polynomial that you get by
squaring
a
binomial
View source
Completing the square
A method for solving
quadratic
equations
View source
In a quadratic equation x² + bx + c that is a square of a
binomial
, c is always the square of ½(b)
View source
Solving a system of equations
Step 1)
Graphing
Step 2)
Substitution
Step 3)
Elimination
or
addition
method
Step 4)
Matrices
View source
Simultaneous equations
Conditions where
two
or more unknown variables are related to each other through an
equal
number of equations
View source
Matrix
- An array of
numbers
arranged into a
fixed
number of rows and columns
The numbers of rows and columns are called the
dimensions
of the matrix
Types of matrices include: square matrix,
diagonal
matrix, row matrix, column matrix, 0-matrix,
identity
matrix, scalar matrix
View source
Matrix operations
Addition
: Add the
numbers
in the matching positions
Subtraction
: Subtract the
numbers
in the matching positions
Multiplication
: Multiply the
rows
of the first matrix with the columns of the second matrix
View source
Matrix
3
rows and
5
columns
3
rows and
4
columns
View source
Sum of
two
matrices A and B
C = A + B, defined by adding
entries
with the same
indices
View source
Subtracting two matrices
Subtract the
numbers
in the
matching positions
View source
Subtracting is actually defined as the
addition
of a
negative
matrix: A + (-B)
View source
Scalar multiplication
Multiplying a
matrix
by a
single
number
View source
Scalar multiplication
2×4
=
8
2×0
=
0
2×1
=2
2×-9
=
-18
View source
Calculating sales value for Monday
Beef pie value + Chicken pie value + Vegetable pie value
$3×13 + $4×8 + $2×6 = $
83
View source
Dot product
Matching the
price
to how many sold,
multiplying
each, then summing the result
View source
Sales for Monday, Tuesday,
Wednesday
, Thursday in
matrix
form
View source
Rows
and
columns
To show how many rows and columns a matrix has, we write
rows×columns
View source
Matrix multiplication
The number of
columns
of the 1st matrix must equal the number of rows of the
2nd
matrix
The result will have the same number of rows as the 1st matrix, and the same number of
columns
as the
2nd
matrix
View source
Matrix multiplication is not commutative:
AB
≠
BA
View source
Identity
matrix
Square
matrix with
1s
on the diagonal and 0s everywhere else
View source
When multiplying by the identity matrix, the original is
unchanged
: A × I = A,
I
× A = A
View source
Determinant
of a
matrix
A special number that can be calculated from a square
matrix
View source
Determinant symbol
|A| means the
determinant
of the
matrix
A
View source
Determinant of a
2x2 matrix
|A| = ad - bc
View source
Cramer's rule
Used to solve systems with
matrices
View source
Inverse of a matrix
The reciprocal of a matrix, denoted A^
-1
View source
When multiplying a matrix by its
inverse
, the result is the
identity
matrix: A × A^-1 = I
View source
Conditions for a matrix to have an
inverse
The matrix must be
square
(same number of rows and columns)
The determinant cannot be
zero
View source
A matrix with determinant zero has
no inverse
and is called
singular
View source
See all 441 cards
See similar decks
Topic 1: Computational Thinking
Edexcel GCSE Computer Science
No cards
2.1.3 Thinking ahead
OCR A-Level Computer Science > 2.1 Elements of computational thinking
30 cards
2.1.1 Problem-solving and programming
OCR A-Level Computer Science > 2.1 Elements of computational thinking
87 cards
c. Logical operators:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms > 1.2.6 Applying operators:
99 cards
b. Searching algorithms:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms > 1.2.9 Understanding standard algorithms:
45 cards
a. Sorting algorithms:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms > 1.2.9 Understanding standard algorithms:
73 cards
2.1.1 Computational Thinking
OCR GCSE Computer Science > 2.1 Algorithms
No cards
1.2 Algorithms
Edexcel GCSE Computer Science > Topic 1: Computational Thinking
No cards
2.1 Elements of computational thinking
OCR A-Level Computer Science
No cards
1.1 Decomposition and Abstraction
Edexcel GCSE Computer Science > Topic 1: Computational Thinking
57 cards
1.2.7 Tracing algorithms:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms
67 cards
1.2.5 Working with data structures:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms
No cards
1.2.9 Understanding standard algorithms:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms
No cards
b. Relational operators:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms > 1.2.6 Applying operators:
159 cards
1.2.8 Identifying and correcting errors:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms
32 cards
Understanding the principles of computational thinking
OCR GCSE Computer Science > 2.1 Algorithms > 2.1.1 Computational Thinking
46 cards
2.1.2 Thinking abstractly
OCR A-Level Computer Science > 2.1 Elements of computational thinking
65 cards
1.2.2 Utilizing programming constructs:
Edexcel GCSE Computer Science > Topic 1: Computational Thinking > 1.2 Algorithms
No cards
2.1.6 Thinking concurrently
OCR A-Level Computer Science > 2.1 Elements of computational thinking
100 cards
2.1.5 Thinking logically
OCR A-Level Computer Science > 2.1 Elements of computational thinking
97 cards
2.1.4 Thinking procedurally
OCR A-Level Computer Science > 2.1 Elements of computational thinking
15 cards