If they're integers, that means they can't be fractions (such as 15/2 and 2).
So the only couples of integers that, when multiplied, result in 15 are:
1 and 15
5 and 3.
(there are no other possibilities as both 5 and 3 are not divisible further).
The smaller of the two sums (15+1; 5+3) is 5+3=8.
The least possible sum of a and b is 8.
Answer:
B po
Step-by-step explanation:
Kase interquartile range po yan
This is tricky because we are given the interest rate for the year but the problem is figureing the interest for 6 months or 1/2 year. We will have to double the difference before solving for the yearly interest.
572.60 - 560.00 = 12.60 interest added for 6 months x 2 = 25.20 for 12 months
(This problem assumes the interest will stay the same the next 6 months)
We need to find what percent 25.20 is to our original balance.
25.20/560 = x / 100
2520 = 560x
x = 4.5 percent interest
Check .045 x 560.00 = 25.20 interest in one year (or 12.60 in 6 months)
Answer:
7/20 is not equivalent to 1/3
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}