
Concept explainers
To find:A BASIC program that produces the product

Explanation of Solution
Given information: A product of two factors
BASIC program.
Concept used:To get the product, multiply second factor by each term of first factor and then use distributive rule to expand it and add like terms together. Use PRINT command to print a statement and INPUT command to enter a variable`s value.
BASIC program to get product
10 PRINT “Program to find product (Ax+B)(Cx+D)”;
20 PRINT “Enter values of A , B , C and D=“;
30 INPUT A,B,C,D;
40 (A*x+B)*(C*x+D)=(A*C)*x*x+(A*D+B*C)*x+B*D;
50 PRINT “(Ax+B)(Cx+D)=”;(A*C);”x^2+”;(A*D+B*C);”x+”;B*D; 60 END;
Output: Program to find product
Enter values of A,B,C,D=1 3 1 5
Here line 10-20, print different messages. Line 30 asks for values of variables A , B , C and D to input. Line 40 simplifies the product of two factors given. LINE 50 returns the result of the given product.
Further simplify the given product as follows.
Conclusion: Above result calculated manually is correct as it is same as produced by the output of this BASIC program.
Chapter 5 Solutions
Algebra: Structure And Method, Book 1
Additional Math Textbook Solutions
Introductory Statistics
University Calculus: Early Transcendentals (4th Edition)
Elementary Statistics (13th Edition)
Basic Business Statistics, Student Value Edition
Elementary Statistics
Elementary Statistics: Picturing the World (7th Edition)
- Consider the table of values below. x y 2 63 3 70 4 77 5 84 Fill in the right side of the equation y= with an expression that makes each ordered pari (x,y) in the table a solution to the equation.arrow_forwardThere were 426 books sold in one week. The number of biology books sold was 5 times that of the number of psychology books. How many books each were sold?arrow_forwardPopulation decreases 5% each year. Starts with a starting population of 3705. Find that population after 5 years.arrow_forward
- solve using substitution -2x-3y=-15 -3x+9y=12arrow_forwardSuppose that 7000 is placed in an accout that pays 4% interest. Interest compunds each year. Assume that no withdraws are made. How much would the account have after 1 year? And how much would the account have after 2 years?arrow_forwardUse substitution to solve the equations -2x+5y=18 x=2y-8arrow_forward
- 5) For each function represented by an equation, make a table and plot the corresponding points to sketch the graph of the function. (a) y = 75 ()* 220 X y 200- -2 180 160 -1 140 0 120 100 1 60 80 2 3 4 x (b) y = 20 ()* 1 60 40 20 20 0 2 3 65- -1 X y 60 -2 55- 50 45 44 40 0 35- 30 1 25 2 20 20 15 3 10 5 LO 4 3-2 T -1 0 5- 4- -3- 2-arrow_forwardA system of inequalities is shown. y 5 3 2 1 X -5 -4 -3 -2 -1 0 1 2 3 4 5 -1- Which system is represented in the graph? Oy>-x²-x+1 y 2x²+3 -2 -3 тarrow_forwardWhich set of systems of equations represents the solution to the graph? -5 -4 -3 -2 Of(x) = x² + 2x + 1 g(x) = x²+1 f(x) = x²+2x+1 g(x) = x²-1 f(x) = −x² + 2x + 1 g(x) = x²+1 f(x) = x² + 2x + 1 g(x) = x²-1 -1 5 y 4 3 2 1 0 -1- -2 -3- -4. -5 1 2 3 4 5arrow_forward
- Algebra and Trigonometry (6th Edition)AlgebraISBN:9780134463216Author:Robert F. BlitzerPublisher:PEARSONContemporary Abstract AlgebraAlgebraISBN:9781305657960Author:Joseph GallianPublisher:Cengage LearningLinear Algebra: A Modern IntroductionAlgebraISBN:9781285463247Author:David PoolePublisher:Cengage Learning
- Algebra And Trigonometry (11th Edition)AlgebraISBN:9780135163078Author:Michael SullivanPublisher:PEARSONIntroduction to Linear Algebra, Fifth EditionAlgebraISBN:9780980232776Author:Gilbert StrangPublisher:Wellesley-Cambridge PressCollege Algebra (Collegiate Math)AlgebraISBN:9780077836344Author:Julie Miller, Donna GerkenPublisher:McGraw-Hill Education





