INDUMAT Finals Review Flashcards

1
Q

In a truth table, what is the mathematical approach in evaluating conjunction (p ʌ q)?

A

min (p,q)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In a truth table, what is the mathematical approach in evaluating disjunction (p v q)?

A

max (p,q)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In a truth table, what is the mathematical approach in evaluating conditional (p → q)?

A

True if and only if the val (p) is less than or equal to val (q)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In a truth table, how do you evaluate a biconditional (p <=> q)?

A

True if both statements have the same truth value. (Both p and q are true or both q and p are false). Otherwise, it is false.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In a truth table, if all the outputs of a column are true, then it is a _________

A

Tautology

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

In a truth table, if all the outputs of a column are false, then it is a _________

A

Contradiction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

In a truth table, if the outputs have at least one true and one false, then it is a _________

A

Contingent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A matrix where elements below the main diagonal are all zeroes

A

Upper Triangular Matrix (Right Triangular Matrix)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A matrix where the elements above the main diagonal are all zeroes

A

Lower Triangular Matrix (Left Triangular Matrix)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Matrix where all elements are zeroes

A

Null Matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

True or False. A matrix is symmetrical if A = A^T.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Type of matrix that has a determinant value of zero and does not have an inverse.

A

Singular Matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Type of matrix that has a determinant value and has an inverse.

A

Non-Singular Matrix (Standard Matrix)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False. Identity matrices are nonsingular.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

If a matrix undergoing an iterative method is not diagonally dominant, then _________.If a matrix undergoing an iterative method is not diagonally dominant, then _________.

A

You must interchange the rows such that the diagonal consists of the highest coefficients of the matrix.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Steps for LU Decomposition

A
  1. Setup matrices as AX=B
  2. Get the upper triangular matrix based on A
  3. Put the multipliers in the lower triangular matrix (Make sure to negate or make “+” into “-“ and vice versa)
  4. Get y values from LY = B
  5. Get x values from UX = Y
17
Q

Steps for Inverse Method

A
  1. Setup the matrices as AX = B
  2. Find A^-1
  3. X = A^-1 B
18
Q

Steps for Gaussian Elimination

A
  1. Setup augmented matrix
  2. Use Elementary Row Operations until you create an upper triangular matrix
  3. Make sure the main diagonal values are equal to ‘1’.
  4. Convert back into equation form
  5. Back substitute
19
Q

Steps for Gauss Jordan Method

A
  1. Setup augmented matrix
  2. Use Elementary Row Operations until you create an identity matrix
  3. Convert back into equation form
20
Q

Steps for Gauss Jacobi

A
  1. Check for diagonal dominance (rearrange rows if found otherwise)
  2. Isolate the variables per row based on the diagonal
  3. Initialize/ Get k=0 iteration wherein variables are all equal to zero
  4. Substitute values into the equations of the variables using values computed from previous iterations
  5. Solve for error values (error = absolute value of old-new)
  6. Repeat the process until the calculated answer has an error value below the tolerable error.
21
Q

Steps for Gauss Seidel

A
  1. Check for diagonal dominance (rearrange rows if found otherwise)
  2. Isolate the variables per row based on the diagonal
  3. Initialize/ Get k=0 iteration wherein variables are all equal to zero
  4. Substitute values into the equations of the variables using the most recent values
  5. Solve for error values (error = absolute value of old-new)
  6. Repeat the process until the calculated answer has an error value below the tolerable error.
22
Q

Necessary and Sufficient Conditions for Local Minima (Theorem 1)

A
  1. Equate first derivative to zero
  2. Get the extreme points
  3. Plug in the extreme points to the second derivative
  4. If the value is greater than 0, it is a minima.
23
Q

Necessary and Sufficient Conditions for Local Maxima (Theorem 2)

A
  1. Equate first derivative to zero
  2. Get the extreme points
  3. Plug in the extreme points to the second derivative
  4. If the value is less than 0, it is a maxima.
24
Q

Convex Graph

A

U

25
Q

Concave Graph

A

26
Q

Both Concave and Convex

A

\ or / (Linear Line)

27
Q

Formula and Procedure for Secant Method

A
  1. Assume x0 and x1.
  2. If absolute value of f (x0) < f(x1), then swap x0 and x1; otherwise keep it as it is.
  3. Solve for x2
  4. Set x0 = x1 and x1=x2
    5.Solve for the new x2
  5. Continue until less than tolerable error

Formula: x2 = x1-f(x1) [(x1-x0) / f(x1) - f(x0)]

28
Q

Procedure for Bisection Method

A
  1. Make columns (k, a , f(a), b, f(b), m, f(m), and error)
  2. Get the value of f(m) wherein m = (a+b) / 2
  3. If f(m) is equal to 0, then m is a root.
  4. If f(m) is less than 0, set a = m. If f(m) is greater than 0, set b = m.
29
Q

For Secant Method, if the given is a trigonometric function, then calculator must be set to ________ .

A

Radians

30
Q
A