Answer:
y = 3/4x + 19/2
Step-by-step explanation:
m = 3/4. point (-6,5)
Point slope form:
y-5=3/4(x- -6)
y -5 = 3/4x + 18/4. 18/4 = 9/2
Y = 3/4x + 9/2 + 5. 5 times 2 plus 9 over 2 = 19/2
y = 3/4x + 19/2
<2= 30 degrees since its vertical to the 4th angle.
<1=150 degrees
<3=150 degrees
since angle 3 and the 4th angle are supplementary, which means both angles equal 180 degrees, angle 3 equals 150 degrees.
since angle 3 is vertical to angle 1 it's also 150 degrees since they're congruent.
Answer:
a - b2
Step-by-step explanation:
STEP 1
:
Trying to factor as a Difference of Squares:
1.1 Factoring: a-b2
Theory : A difference of two perfect squares, A2 - B2 can be factored into (A+B) • (A-B)
Proof : (A+B) • (A-B) =
A2 - AB + BA - B2 =
A2 - AB + AB - B2 =
A2 - B2
Note : AB = BA is the commutative property of multiplication.
Note : - AB + AB equals zero and is therefore eliminated from the expression.
Check : a1 is not a square !!
Ruling : Binomial can not be factored as the difference of two perfect squares
Final result :
a - b2
<u><em>HOPE THIS HELPS!</em></u>
<u><em>PLEASE MARK BRAINLIEST! :)</em></u>
Answer:
$93
Step-by-step explanation:
<em>It izz wat it izzzz!!!</em>
Write a C program to compute Matrix Multiplication of two matrices. Use one dimensional array to store each matrix, where each row is stored after another. Hence, the size of the array will be a product of number of rows times number of columns of that matrix. Get number of row and column from user and use variable length array to initialize the size of the two matrices as well as the resultant matrix. Check whether the two matrices can be multiplied or not. Write a getMatrix() function to generate the array elements randomly. Write a printMatrix() function to print the 1D array elements in 2D Matrix format. Also, write another function product(), which multiplies the two matrices and stores in the resultant matrix. With SEED 5, the following output is generated.
Sample Output
Enter the rows and columns of Matrix A with space in between: 3 5
Enter the rows and columns of Matrix B with space in between: 5 4
Matrix A:
8 6 4 1 6
2 9 7 7 5
1 3 1 1 2
Matrix B:
9 5 4 5
9 9 8 1
4 4 3 5
2 6 2 1
4 5 2 4
Product AxB:
168 146 106 91
161 186 125 81
50 52 37 22
In conclusion, the answer is 5x1
Please give Brainliest answer thanks! :)