Submit a document that details your problem solving approach when finding the in
ID: 3747067 • Letter: S
Question
Submit a document that details your problem solving approach when finding the inverse of a 2x2 matrix. Explain the problem, goal, inputs assumptions, outputs, formulas, and algorithm you used to solve this problem. Visit the website mathisfun to find out how to invert a matrix. You will implement your solution as a C program that should Include your name in a comment at the beginning Match the algorithm you described Ask the user for values of a, b', c' and 'd Compute and print the correct inverse Compile without warnings nor errors Handle when the matrix is singular Use proper indentation and alignment You will also submit your c file (do not submit project files, o files, nor exe files)Explanation / Answer
Problem: Given a 2X2 Matrix, we need to find the inverse.
Goal: To find the inverse of given matrix
Inputs: Program will get inputs from the user i.e. order of matrix, elements of matrix.
Program;
Output;