subject

LANGUAGE IS PYTHON 9.14 LAB: Brute force equation solver

Numerous engineering and scientific applications require finding solutions to a set of equations. Ex: 8x + 7y = 38 and 3x - 5y = -1 have a solution x = 3, y = 2. Given integer coefficients of two linear equations with variables x and y, use brute force to find an integer solution for x and y in the range -10 to 10.

Ex: If the input is:

8

7

38

3

-5

-1

Then the output is:

x = 3 , y = 2

Use this brute force approach:

For every value of x from -10 to 10

For every value of y from -10 to 10

Check if the current x and y satisfy both equations. If so, output the solution, and finish.

Ex: If no solution is found, output:

There is no solution

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 20:00
Which type of file can be used to import data into a spreadsheet?
Answers: 1
question
Computers and Technology, 22.06.2019 23:00
In which part of a professional email should you try to be brief, but highly descriptive?
Answers: 1
question
Computers and Technology, 23.06.2019 05:20
What did creator markus “notch" persson initially call his game
Answers: 1
question
Computers and Technology, 23.06.2019 13:00
In excel - calculate the actual increase/decrease from first quarter to the second quarter then subtract subtract first quarter value from second quarter total then divide result by first quarter value
Answers: 1
You know the right answer?
LANGUAGE IS PYTHON 9.14 LAB: Brute force equation solver

Numerous engineering and scie...
Questions
question
Mathematics, 14.04.2020 18:31
question
Mathematics, 14.04.2020 18:32
question
Physics, 14.04.2020 18:32