Evaluate the following expressions and reduce the result to lowest terms.
(5/8) + (1/14)
= ((5 * 14) / (8 * 14)) + ((1 * 8) / (8 * 14))
=(70 /112)+(8 /112)
= 78 / 112
= 39/56 Lowest terms since there are no common factors
39 /56=(3*13)/(2*4*7)
You might also like to view...
Answer the following questions true (T) or false (F)
1. True/False: If X = 4 and Y = 8, then Y / X ^ 2 + 3 * X – 1 = 15 is correct. 2. True/False: The two types of numeric data allowed in most programming languages are integers and floating point numbers. 3. True/False: The two types of non-numeric data allowed in most programming languages are character string and alphanumeric data.
Choose the sentence type of the following sentence.Since the cross-country highway opened, the traffic flow has improved greatly.?
A. ?Simple B. ?Compound C. ?Complex D. ?Compound-complex
To connect people in a small geographic area, use a LAN. ?
Answer the following statement true (T) or false (F)
Analyze the following code:
``` import javafx.beans.property.DoubleProperty; import javafx.beans.property.SimpleDoubleProperty; public class Test { public static void main(String[] args) { DoubleProperty balance = new SimpleDoubleProperty(); balance.addListener(ov -> System.out.println(2 + balance.doubleValue())); balance.set(4.5); } } ``` a. The program displays 4.5. b. The program displays 6.5. c. The program would display 4.5 if the balance.set(4.5) is placed before the balance.addLisnter(...) statement. d. The program would display 6.5 if the balance.set(4.5) is placed before the balance.addLisnter(...) statement.