Answer:
h = yX -yr
Step-by-step explanation:
X=r-h/y
X - r = h/y
y*(X-r) = h
h = yX -yr
Answer:
y = -5x + 4/3
Step-by-step explanation:
m is the slope and b is the y intercept. m= -5 so -5 is the slope and b= 4/3 so 4/3 is the y intercept.
Answer:
Loan A will have the lowest total paycheck because the total of the principal than the same total for loan B
The only way 3 digits can have product 24 is
1 x 3 x 8 = 241 x 4 x 6 = 242 x 2 x 6 = 242 x 3 x 4 = 24
So the digits comprises of 1,3,8 or 1,4,6, or 2,2,6, or 2,3,4
To be divisible by 3 the sum of the digits must be divisible by 3.
1+ 3+ 8=12, 1+ 4+ 6= 11, 2 +2 + 6=10, 2 +3 + 4=9Of those sums of digits, only 12 and 9 are divisible by 3.
So we have ruled out all but integers whose digits consist of1,3,8, and 2,3,4.
Meanwhile they must be odd they either must end in 1 or 3.
The only ones which can end in 1 are 381 and 831.
The others must end in 3.
They must be greater than 152 which is 225. So the
First digit cannot be 1. So the only way its digits can contain of1,3,8 and close in 3 is to be 813.
The rest must contain of the digits 2,3,4, and the only way they can end in 3 is to be 243 or 423.
So there are precisely five such three-digit integers: 381, 831, 813, 243, and 423.
Answer and Explanation:
The Prolog rule expresses that logical implication (:-) describes the relationship between facts.
Prolog expressions are containing truth-functional symbols, which have the same intervention as in predicate calculus.
For example:
English Predicate calculus prolog
and ^ ,
or v ;
By using information, given in the question,
We can make prolog:
Grandfather(X, Y) :-mother(M,Y), father(X,M); father (F, Y), father(X,F)
Prolog (:- ) means define,
Prolog (,) represents a conjunction
And
Prolog (;) represent a disjunction