answersLogoWhite

0


Best Answer

x+y=20

x-y=4

2x=24

x=12

y=8

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Jonathon Sumrall

Lvl 2
2y ago

14 6

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The sum of two number is 20 and their difference 4 Find the numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Sum of 2 numbers equals 13 difference of the number equals 1 find the numbers what is their difference?

The numbers are 7 and 6


One number is 11 more than twice another number If the sum of the numbers is twice their difference find the numbers?

11,33


the sum of the two numbers is 548.the difference between the two numbers is 124.find the smaller number?

212


What are the steps in getting the product sum and difference of two terms?

To get the product, multiply the first number by the second. To get the sum, add the second number to the first. To get the difference, subtract the smaller number from the larger.


Find two numbers such that their sum is 108 and difference is 54?

27 and 81


The sum of two numbers is 1 If one number is subtracted from the other their difference is 9 Find the number?

-8


The sum of two numbers is twice their difference The lager number is 6 more than twice the smaller Find the numbers?

18 and 6


The sum of two numbers is 36 their difference is 24 find the numbers?

12


The sum of to numbers is 16 Their difference is 8 Find the numbers?

4 and 12


The sum of two numbers is -42 the first number minus the second number is 52 Find the numbers?

= The sum of two numbers is -42 the first number minus the second number is 52 Find the numbers? =


Find two numbers with a sum of -8 and a difference of 4 let x be the greater number and y be the lesser number?

-2 & -6


Write a program that will accept two numbers and find their sum anddifferences. If the sum is more than the difference, display the sum otherwisedisplay the difference. Pascal programming?

program SumAndDifference; var num1, num2, sum, difference: integer; begin write('Enter first number: '); read(num1); write('Enter second number: '); read(num2); sum := num1 + num2; difference := num1 - num2; if sum > difference then written('The sum is greater: ', sum) else written('The difference is greater: ', difference); end. This program will prompt the user to enter two numbers, calculate their sum and difference, and then compare the two values. If the sum is greater than the difference, it will display the sum; otherwise, it will display the difference.