4.17 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: 87 38 3 -5 -1 the output is: 32 because 8x3 +7x2-38 and 3x3 +-5x2=-1. 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: No solution You can assume the two equations have no more than one solution. Note: Elegant mathematical techniques exist to solve such linear equations. However, for other kinds of equations or situations, brute force can be handy. LAB ACTIVITY 4.17.1: LAB: Brute force equation solver 0/28

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

In C++

4.17 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
the output is:
32
because 8x3 + 7x2 = 38 and 3x3 + -5x2 = -1.
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:
No solution
You can assume the two equations have no more than one solution.
Note: Elegant mathematical techniques exist to solve such linear equations. However, for other kinds of equations or situations,
brute force can be handy.
417118.2791720.qx3zqy7
LAB
ACTIVITY
4.17.1: LAB: Brute force equation solver
0/28
Transcribed Image Text:4.17 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 the output is: 32 because 8x3 + 7x2 = 38 and 3x3 + -5x2 = -1. 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: No solution You can assume the two equations have no more than one solution. Note: Elegant mathematical techniques exist to solve such linear equations. However, for other kinds of equations or situations, brute force can be handy. 417118.2791720.qx3zqy7 LAB ACTIVITY 4.17.1: LAB: Brute force equation solver 0/28
417118.2791720.qx3zqy7
LAB
ACTIVITY
4.17.1: LAB: Brute force equation solver
1 #include <iostream>
2 using namespace std;
4 int main() {
5
6
7
8
9
10
/* Type your code here. */
return 0;
Develop mode Submit mode
Enter program input (optional)
If your code requires input values, provide them here.
Run program
Program output displayed here
Coding trail of your work What is this?
main.cpp
Run your program as often as you'd like, before submitting for grading. Below, type any
needed input values in the first box, then click Run program and observe the program's
output in the second box.
Input (from above) ->
main.cpp
(Your program)
0/28
Load default template...
Output (shown below)
Transcribed Image Text:417118.2791720.qx3zqy7 LAB ACTIVITY 4.17.1: LAB: Brute force equation solver 1 #include <iostream> 2 using namespace std; 4 int main() { 5 6 7 8 9 10 /* Type your code here. */ return 0; Develop mode Submit mode Enter program input (optional) If your code requires input values, provide them here. Run program Program output displayed here Coding trail of your work What is this? main.cpp Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. Input (from above) -> main.cpp (Your program) 0/28 Load default template... Output (shown below)
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Parallel Processing
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education