Concept explainers
To find:A BASIC program to solve the equation of form
the equation
Explanation of Solution
Given information: A linear equation of form
BASIC program.
Concept used:Use different syntax that is used to PRINT, INPUT and do other operations to solve a linear equation in one variable, while writing require BASIC program.
BASIC program to solve given equation of form
is:
01 PRINT “Program to solve equation AX+B=CX+D”;
02 PRINT “Enter values of A , B , C and D “;
03 LET x=0;
04 INPUT A , B , C , D ;
05 A*x-C*x=D-B
06 (A-C)*x=D-B
07 x=(D-B)/(A-C)
08 PRINT “Solution of given equation is x=0”; x
09 IFA-C=0 THEN 10;
10 PRINT “Given equation has NO SOLUTION”
11 END
Output: Program to solve equation
Enter values of A , B, C and D . 3, 4,5,10
Solution to given equation is
Here line 01-02, print different messages. Line 04 asks the values of constants and coefficients used in the equation. Lines 05-07 solve the equation for unknown variable x. LLINE 08 returns the result of the equation. And LINE 09 implies the condition for equation having NO SOLUTION.
Get the solution of the given equation
Conclusion: On running the above program, the solution of the equation
Chapter 3 Solutions
Algebra: Structure And Method, Book 1
Additional Math Textbook Solutions
Elementary Statistics: Picturing the World (7th Edition)
College Algebra with Modeling & Visualization (5th Edition)
Introductory Statistics
A First Course in Probability (10th Edition)
Elementary Statistics
Algebra and Trigonometry (6th Edition)
- 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