Answer:
Y = 9 - 7x
Step-by-step explanation:
Answer:
6/5, or 1 1/5
Step-by-step explanation:
I use a method called KCF, which means Keep Change Flip. Here is your current expression: 2/5 / 1/3. First, keep the first fraction. Next, change the sign into a multiplication symbol. Now, you have 2/5 x 1/3. Finally, flip the last fraction into 3/1. Now, this is your expression: 2/5 x 3/1. Multiply numerator by numerator, denominator by denominator. Your final answer is 6/5, or 1 1/5 simplified.
Answer:
--1-- (of set 23456)
2 4
5 3
6
--2-- (of set 23456)
2 3
5 4
6
--3-- (of set 23456)
2 5
6 3
4
--4-- (of set 23456)
2 3
6 5
4
--5-- (of set 23456)
3 5
4 2
6
--6-- (of set 23456)
3 2
4 5
6
--7-- (of set 23456)
3 6
5 2
4
--8-- (of set 23456)
3 2
5 6
4
--9-- (of set 23456)
3 5
6 4
2
--10-- (of set 23456)
3 4
6 5
2
--11-- (of set 23456)
4 5
3 2
6
--12-- (of set 23456)
4 2
3 5
6
--13-- (of set 23456)
4 6
5 3
2
--14-- (of set 23456)
4 3
5 6
2
--15-- (of set 23456)
5 4
2 3
6
--16-- (of set 23456)
5 3
2 4
6
--17-- (of set 23456)
5 6
3 2
4
--18-- (of set 23456)
5 2
3 6
4
--19-- (of set 23456)
5 6
4 3
2
--20-- (of set 23456)
5 3
4 6
2
--21-- (of set 23456)
6 5
2 3
4
--22-- (of set 23456)
6 3
2 5
4
--23-- (of set 23456)
6 5
3 4
2
--24-- (of set 23456)
6 4
3 5
2
--1-- (of set 34567)
3 5
6 4
7
--2-- (of set 34567)
3 4
6 5
7
--3-- (of set 34567)
3 6
7 4
5
--4-- (of set 34567)
3 4
7 6
5
--5-- (of set 34567)
4 6
5 3
7
--6-- (of set 34567)
4 3
5 6
7
--7-- (of set 34567)
4 7
6 3
5
--8-- (of set 34567)
4 3
6 7
5
--9-- (of set 34567)
4 6
7 5
3
--10-- (of set 34567)
4 5
7 6
3
--11-- (of set 34567)
5 6
4 3
7
--12-- (of set 34567)
5 3
4 6
7
--13-- (of set 34567)
5 7
6 4
3
--14-- (of set 34567)
5 4
6 7
3
--15-- (of set 34567)
6 5
3 4
7
--16-- (of set 34567)
6 4
3 5
7
--17-- (of set 34567)
6 7
4 3
5
--18-- (of set 34567)
6 3
4 7
5
--19-- (of set 34567)
6 7
5 4
3
--20-- (of set 34567)
6 4
5 7
3
--21-- (of set 34567)
7 6
3 4
5
--22-- (of set 34567)
7 4
3 6
5
--23-- (of set 34567)
7 6
4 5
3
--24-- (of set 34567)
7 5
4 6
3
Step-by-step explanation:
This javascript code is extremely brute-force, but it does the job:
function checkIfInSet(i, set) {
return i.toString().split('').sort().join('') === set;
}
function checkIfMagic(s) {
return (parseInt(s[0]) + parseInt(s[1]) == parseInt(s[3]) + parseInt(s[4]))
}
function printMagic(s) {
console.log(`${s[0]} ${s[4]}`);
console.log(` ${s[1]} ${s[3]}`);
console.log(` ${s[2]}\n`);
}
function checkSet(set) {
let counter = 1;
for(let i=1; i<99999; i++) {
if (checkIfInSet(i, set) && checkIfMagic(i.toString())) {
console.log(`--${counter++}-- (of set ${set})`);
printMagic(i.toString());
}
}
}
checkSet('23456');
checkSet('34567');
Hi there!
To solve both of you questions, you will need to use the cross product method :
<u>Finding "x" :</u>

So you have to do :
(4 ×
) ÷ 2 = x gallon
4 times
is the same thing as 4 times 0.5, which equals 2.
2 ÷ 2 = x gallon
1 = x gallon
So the amout for x would be : 1 gallon
<u>Finding "y" :</u>
You could do the exact same method as we did for finding "x", but the easiest and fastest way to get our answer is just by multiplying the amout we got for "x" by 2 because we are putting 8 scoops instead of 4 for "x" (and 4 times 2 = 8) :
1 gallon × 2 = y
2 gallons = y
So your answer is : The amount for y would be : 2 gallons
There you go! I really hope this helped, if there's anything just let me know! :)
Answer:
Length = 6
Width = 3/2
Step-by-step explanation:
You can choose to go about this question in lots of different ways, but this is how i did it. I drew a diagram of the rectangle and labeled it: the height/length as x and the width as x/4 (they told us the width is a quarter of the length). They also told us that the area is 9 square units.
We know that length x width = area
So: length x width = 9
I'm gonna bring in the variables i used in the diagram, so:
x
= 9
Keep solving:
= 9
Times both sides by 4:
= 36
Square root both sides for x:
<em>* remember that when you square root, its possible to have a positive or negative version of the value</em>
x = ±6
Since its impossible to have a negative length, we can say that x = 6.
X was just the variable we gave to the length of the rectangle, so now we know the length is 6. If you needed to find width as well, you can do 6/4, which simplifies to 3/2.
To double-check
- 6 x 3/2 should equal 9, since length x width = area
which it is, so we're correct!
Hope that helped : )