Answer:
35
Step-by-step explanation:
3x2=6
or if x is variable :18
2x3=6
2x3=6
+5
add them all up:
18+6+6+5=35
let me know if something is confusing.
how do you solve 2m-10=44+8m
Answer:
m = -9
Step-by-step explanation:
2m-10=44+8m
Subtract 2m from each side
2m-2m-10=44+8m-2m
-10 = 44+6m
Subtract 44 from each side
-10-44 = 44-44+6m
-54 = 6m
Divide by 6
-54/6 = 6m/6
-9 = m
Answer:
solve by solving the salvation for equation don't be a slave get educated from what's gave
20. A pool holds 1440 cubic feet of water, the city charges $1.75 per cubic meter of water used.
How much will it cost to fill the pool?
Answer:Conversion units
Step-by-step explanation: 1 ft^3= 0.028m^3 .: 1440ft^3=40.776m^3, so $1.75x40.776=$71.358~ $71.36.:
Answer:
$71.36
Step-by-step explanation:
1 foot = 0.3048 metros
1 cubic feet = (0.3048metros)³ = 0.02932 cubic meters (aprox.)
1440 cubic feet = 1440*0.02932 = 40.7763 m
$1.75 por cubic meter:
1.75*40.7763 = $71.36
Please help! I’ve tried every site and nothing has helped
The answer is 11.8
Answer:
11.8%
Step-by-step explanation:
Here in this question, we want to find the probability of no success in the binomial experiment for 6 trials.
Let p = probability of success = 30% = 30/100 = 0.3
q = probability of failure = 1-p = 1-0.3 = 0.7
Now to calculate the probability, we shall need to use the Bernoulli approximation of the binomial theorem.
That would be;
P(X = 0) = 6C0 p^0 q^6
6C0 is pronounced six combination zero
= 6 * 0.3^0 * 0.7^6 = 1 * 1 * 0.117649 = 0.117649
This is approximately 0.1176
If we convert this to percentage we have 11.76%
But we want our answer rounded to the nearest tenth of a percent and that is 11.8%
I'm doing a task which involves magic v's, a maths pattern which has the rule of having the same total on each side. For e.g.
6 5
3 4
2
Is a magic v because each side adds up to 11. I need to make magic V's with the number 2-6 and 3-7. There are 24 possibilities for each number set.
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');
The diagram shows 2 straight line , PQ and QR
Find the equation of QR
Help me to explain :)
Answer:
Step-by-step explanation:
We first need to find h. Since h is the x coordinate of Q, and Q is on the line 3x + 4y = 6, we will plug in the x value of h and the y value of 3 and solve for h:
3h + 4(3) = 6 and
3h + 12 = 6 and
3h = -6 so
h = -2
The coordinates for Q are (-2, 3). Now we can use that to find the slope of the line QR:
[tex]m=\frac{8-3}{3-(-2)}=\frac{5}{5}=1[/tex]
So the slope of QR is 1. Now we will choose one of the coordinates on line QR as our x and y coordinates to write the equation for the line in point slope form then in standard form:
y - 8 = 1(x - 3) and
y - 8 = x - 3 and
y - x = 5 or
-x + y = 5. If your teacher does not want you to lead with a negative:
x - y = -5 would be your equation in standard form.
the cube root of 2 to the seventh power
Answer:
4 2^(1/3) or 5.0396841995794926590688424291129134022810058588060319203279004486... decimal
Step-by-step explanation:
Simplify the following:
(2^(1/3))^7
Hint: | For all a>=0, (a^(1/3))^m = a^(m/3). Apply this to (2^(1/3))^7.
Multiply exponents. (2^(1/3))^7 = 2^(7/3):
2^(7/3)
Hint: | Separate the exponent of 2^(7/3) into integer and fractional parts.
2^(7/3) = 2^(6/3 + 1/3) = 2^(6/3)×2^(1/3):
2^(6/3) 2^(1/3)
Hint: | Divide 6 by 3.
6/3 = (3×2)/3 = 2:
2^2 2^(1/3)
Hint: | Evaluate 2^2.
2^2 = 4:
Answer: 4 2^(1/3) or 5.0396841995794926590688424291129134022810058588060319203279004486... decimal
MATHEMATICS
Algebra
Simultaneous Equations
1. 5u + 2v=7
2u - 2v=7
2. 3x - 4y=19
4x - 5y=23
Answer:
1. u = 2, v = -1.5
2. y = -7, x = -3
Step-by-step explanation:
1) For the following simultaneous equation, we have;
5·u + 2·v = 7....................(1)
2·u - 2·v = 7......................(2)
Adding equation (1) to equation (2), gives;
5·u + 2·v + 2·u - 2·v = 14
5·u + 2·u + 2·v- 2·v = 14
7·u = 14
u = 14/7 = 2u = 2
u = 2
From equation (1), we have;
5·u + 2·v = 7 substituting u = 2 gives;
5×2 + 2·v = 7
2·v = 7 - 5×2 = 7 - 10 = -3
v = -3/2 = -1.5
v = -1.5
2.
3·x - 4·y = 19....................(1)
4·x - 5·y = 23.......................(2)
Multiplying equation (1) by 4 and equation (2) by 3 gives;
For equation (1)
4 × (3·x - 4·y) = 4 ×19
12·x - 16·y = 76...........................(3)
For equation (2)
3 × (4·x - 5·y) = 3 × 23
12·x - 15·y = 69...........................(4)
Subtracting equation (3) from equation (4) gives;
12·x - 15·y - (12·x - 16·y) = 69 - 76 = -7
12·x - 15·y - 12·x + 16·y = 69 - 76 = -7
12·x - 12·x - 15·y + 16·y = -7
y = -7
Substituting the value of y = -7 in equation (1), we have;
3·x - 4·y = 19 = 3·x - 4×(-7) = 19
3·x - 4×(-7) = 19
3·x + 28 = 19
3·x = 19- 28 = -9
x = -9/3 = -3
x = -3.
What is the other endpoint of a segment with a midpoint of M(6, 1) and an endpoint S(5,-3)?
ANSWERS ASAP!!!!
Answer:
(7, 5)
Step-by-step explanation:
(x+5)/2, ( y-3)/2)=(6,1)
(x+5)/2=6, x= 7
( y-3)/2=1, y=5
solving polynomial(2x+8)(-3y-8)
Answer:
-6xy - 16x -24y -64
Step-by-step explanation:
(2x+8)(-3y-8) =
To find the answer,
First multiply, the first number on both sides,
2x * -3y = -6xy
Then the first number on the left side and the second number on the right side,
2x * -8 = -16x
Then the second number on the left side and the first number on the right side,
8 * -3y = -24y
Then the second number on the left side and the second number on the right side,
8 * -8 = -64
Now add all the answers,
-6xy -16x -24y -64
Answer:
-6xy-16x-24y-64
Step-by-step explanation:
(2x+8)(-3y-8)
Foil
First 2x*-3y = -6xy
outer -8*2x = -16x
inner -3y *8 = -24y
last -8*8 = -64
Add them together
-6xy-16x-24y-64
Represents the solution to the inequality -9=2/3x-7<5
Answer:
-3=x <13
Step-by-step explanation:
[tex] - 9 = \frac{2x}{3} - 7 < 5[/tex]
Multiply through by 3
[tex] - 27 = 2x - 21 < 15[/tex]
Add 21 to all sides
[tex] - 6 = 2x < 36[/tex]
Divide through by 2
[tex] - 3 = x < 18[/tex]
The solutin set is
[tex]{- 3 = x < 18}[/tex]
Having trouble.. help?
Answer:
(A) [tex]y = x+3[/tex]
Step-by-step explanation:
Using the values of (-6, -3), (3,6), and (5,8) we can substitute the values into each equation and see if the equation meets the requirements for all 3.
Let's test A first.
[tex]-3 = -6+3[/tex]
Correct, let's try the second pair.
[tex]6 = 3+3[/tex]
Correct, let's try the third pair.
[tex]8 = 5+3[/tex]
So yes, this equation works.
For fun, let's try the other equations.
Let's test B.
[tex]-3 = -6-3[/tex]
This is not true as -6 -3 = -9. So this equation is immediately ruled out.
Let's test C.
[tex]-3 = 2\cdot-6[/tex]
Again this doesn't work, as -6 times 2 is -12. So this equation is also ruled out.
Let's try D.
[tex]-3 = \frac{1}{2}\cdot-6[/tex]
This works, as half of -6 is -3 - however the equation will only work if all 3 pairs work for it.
Let's try the second pair.
[tex]6 = \frac{1}{2}\cdot3[/tex]
This doesn't work, as half of 3 is 1.5. This equation is also ruled out.
Therefore, A is the only equation that works with these pairs.
Hope this helped!
5. Eight adults and six children travel in a cable car.
Estimate the total mass of the people in the cable car.
Answer: 1880 pounds
Step-by-step explanation: when you take the average adult weight, around 160 lbs. you multiply that by eight. you get 1280. then you estimate that each of the children weigh around 100 lbs, then you add 600 to 1280 and get 1,880 lbs
I need hellp please its my last chance to become a senior please someone
Answer:
d= 6
r= 6/2
r=3
V= π. r². h
V= π . 3². 14
V= π. 9 . 14
V= π 126 cm³
V= 126 π cm³ (π not in number)
hope it helps^°^
Answer:if you use the formula it is 126 pi cm cubed
The answer is c
Step-by-step explanation:
Given that p=x^2-y^2/x^2+xy
I. Express p in the simplest form
ii. Find the value of p, if x=-4 and y=-6
Answer:
When x = -4 and y = -6, p = 37.75
Step-by-step explanation:
Given that p = x² - y²/x² + x·y, we have;
p = (x² × x² -y² + x·y×x²)/x²
p = (x²⁺² - y² + x¹⁺² × y)/x²
p = (x⁴ - y² + x³·y)/x²
Therefore, p in the simplest form is given as follows;
[tex]p = \dfrac{x^4 - y^2 + x^3 \cdot y }{x^2}[/tex]
To find the value of p when x = -4 and y = -6, we plug in the value of x and y into the above equation to get the following equation;
[tex]p = \dfrac{(-4)^4 - (-6)^2 + (-4)^3 \cdot (-6) }{(-4)^2} = 37.75[/tex]
Therefore, the value of p when x = -4 and y = -6 is equal to 37.75.
Jeremy drove 180 miles in 3 hours. Find his average rate of change.
Answer:
60 miles per hour
Step-by-step explanation:
Total distance= 180 miles
Total time =3 hours
Average rate of change= ?
Distance= Rate × time
Make Time the subject of the formula
Time= Distance / Rate
Make average rate of change the subject of the formula
Average rate of change = Distance / time
= 180 miles / 3 hours
= 60 miles per hour
type in symbols to make 3,7,12,2 equal 45
Answer:
The answer is (3×7) + (12×2) .
[tex](3 \times 7) + (12 \times 2)[/tex]
[tex] = 21 + 24[/tex]
[tex] = 45[/tex]
Please help me with this
verifying, by putting [tex] \theta=60^{\circ}[/tex]
LHS≠RHS
hence the question is FALSE
Find the distance between the two points (-4,4) and (1,0)
Answer:
The answer is
[tex] \sqrt{41} \: \: \: units[/tex]Step-by-step explanation:
The distance between two points can be found by
[tex] \sqrt{ ({x _{1} - x_{2} })^{2} + ({y_{1} } - y_{2} )^{2} } [/tex]
where
( x1 , y1) and ( x2 , y2) are the points
So the distance between (-4,4) and (1,0) is
[tex] \sqrt{( { - 4 - 1})^{2} + ( {4 - 0})^{2} } [/tex][tex] = \sqrt{ ({ - 5})^{2} + {4}^{2} } [/tex][tex] = \sqrt{25 + 16} [/tex]We have the final answer as
[tex] \sqrt{41} \: \: \: units[/tex]Hope this helps you
can someone help me with this graphical method equation 3x + 5y = -2 7x - 8y = 15
Answer:
x = 1
y = -1
Step-by-step explanation:
3x + 5y = -2
7x - 8y = 15
=> -8y = 15 - 7x
=> -y = 15/8 - 7/8x
=> y = -15/8 + 7/8x
3x + 5(-15/8 + 7/8x) = -2
=> 3x -75/8 + 35/8x = -2
=> 24/8x - 75/8 + 35/8x = -16/8
=> 59/8x - 75/8 = -16/8
=> 59/8x = 59/8
=> x = 59/8 x 8/59
=> x = 472/472
=> x = 1
x = 1
So, 3x + 5y = -2
=> 3 (1) + 5y = -2
=> 3 + 5y = -2
=> 5y = -5
=> y = -5/5
=> y = -1
So, x = 1
=> y = -1
is 7.2 a repeating or terminating decimal
Answer: terminating
Step-by-step explanation:
Answer:
7.2 is a terminating decimal.
Step-by-step explanation:
Terminating decimals are decimals that have an end point. The decimal does not continue to go on and on with numbers but, it stops at one number which makes it terminating.
Repeating decimals are decimals that go on and on with the same number or same patterns of numbers.
So, since 7.2 has an endpoint, then it is a terminating decimal.
Cam’s tent (shown below) is a triangular prism.
Find the surface are, including the floor of his tent
PLEASE HELP
Answer:
21.4 m²
Step-by-step explanation:
To find the surface area of this whole triangular prism, we have to look at the bases (the triangles), find their surface area, then look at the sides (the rectangles) and find theirs.
Let's start with the triangles. The area of any triangle is [tex]\frac{bh}{2}[/tex]. The base of this triangle is 2m (because there are 2 one meters) and the height is 1.7m.
[tex]\frac{2\cdot1.7}{2} = \frac{3.4}{2} = 1.7[/tex]
So the area of one of these triangles is 1.7m. Multiplying this by two, because there are two triangles in this prism:
[tex]1.7\cdot2=3.4[/tex]
Now let's find the area of the sides.
The side lengths are 2 and 3, so
[tex]2\cdot3=6[/tex], and there are 3 sides (including the bottom/floor) so [tex]6\cdot3=18[/tex].
Now we add.
[tex]18+3.4=21.4[/tex] m².
Hope this helped!
Answer: 21.4 square meters^2
Step-by-step explanation:
Find the surface area of a
sphere with a diameter of
15 in.
Can someone please explain how?
Answer:
About 706.5 square inches.
Step-by-step explanation:
Surface area of a sphere is: [tex]SA=4\pi r^2[/tex]
The radius is half the diameter. So, the radius of the given sphere is 7.5 in.
15/2 = 7.5
Find the surface area:
I use 3.14 for pi.
[tex]SA=4*3.14*7.5^2\\\\SA=4*3.14*56.25\\\\SA=12.56*56.25\\\\\boxed{SA=706.5}[/tex]
The surface area is about 706.5 square inches.
Hope this helps.
Answer:
SA=706.86 in²
Step-by-step explanation:
surface area of a sphere = 4πr²
radius r=d/2=15/2=7.5
SA=4(π)(7.5)²
SA=706.86 in²
A blue print for a house has a scale of 1:10. A wall in the blueprint is 8in. What is the length of the actual wall?
6.67. inches
80 feet
969 feet
6.67 feet
Answer:
80 feet
Step-by-step explanation:
1 inch represents 10 feet
Then 8 inches represent = 8 × 10
= 80 feet
I need help asap!!!
8 m minus 6 less or equal than 10
Hi there! :)
Answer:
[tex]\huge\boxed{m\leq 2}[/tex]
Equation:
8m - 6 ≤ 10
Add 6 to both sides:
8m ≤ 16
Divide both sides by 8:
8m/8 ≤ 16/8
m ≤ 2
Answer:
8m - 6≤ 10
m≤2
Step-by-step explanation:
8m - 6≤ 10
Add 6 to each side
8m - 6+6≤ 10+6
8m ≤ 16
Divide each side by 8
8m/8 ≤16/8
m≤2
order of operation
3⋅6−2+2
Answer:
18
Step-by-step explanation:
3⋅6−2+2
Use PEMDAS = Parentheses, Exponent, Multiplication, Division, Addition, Subtraction
First we multiply, then add or subtract so,
18 - 2 + 2
Now we subtract,
16 + 2
Now we add,
18
...................................................
Answer:
11.21157846 =x
Step-by-step explanation:
We know log b (a) = c can be written as b^c =a
log 3 (x) = 2.2
3^2.2 = x
11.21157846 =x
Answer:
[tex]\large \boxed{\sf \bold{A.} \ x=11.21}[/tex]
Step-by-step explanation:
[tex]\large \sf log_3 (x)=2.2[/tex]
Solve this by converting the logarithmic statement into its equivalent exponential form, using the relationship:
[tex]\large \sf log_b(y)=x[/tex]
[tex]\large{\sf y=b^x}[/tex]
Apply the relationship.
[tex]\large \sf log_3 (x)=2.2[/tex]
[tex]\large \sf x=3^{2.2}[/tex]
[tex]\large \sf x=11.21157845...[/tex]
[tex]\large \sf x \approx 11.21[/tex]
Find the area of the following rectilinear figure.
Answer:
Area : 14+10+40=64 square unit
Step-by-step explanation:
the area of the top rectangle with sides 2 and 7
A=2*7=14 square unit
the area of the middle rectangle with sides : (7-5)=2 and side (7-2)=5
Area=5*2=10 square unit
the bottom rectangle : sides 10 and 4
Area=10*4=40
add the areas : 14+10+40=64 square unit
Please answer this question now
Answer:
Surface area of a cone = 461.58 In²
Step-by-step explanation:
Surface area of a cone = πrl + or
Surface area of a cone = πr(r+l)
Where r = radius
Radius= diameter/2
Radius=14/2
Radius= 7 inch
And l slant height= 14 inch
Surface area of a cone = πr(r+l)
Surface area of a cone = π*7(7+14)
Surface area of a cone = 7π(21)
Surface area of a cone = 147π
Surface area of a cone = 461.58 In²
Which equation represents a population of 300 animals that decreases at an annual rate of 23%? A. p=300(1.23)t B. p=300(1.77)t C. p=300(0.77)t D. p=300(0.23)t
For a given initial quantity A, a decrease of x% can be written as:
A - A*(x%/100%) = A*(1 - x%/100%)
With this, we need to construct an exponential decrease equation for the given situation, and we will find that the equation is:
P(t) = 300*(0.77)^t
Now let's see how we found that.
In this case, we know that:
The initial number of animals is 300.
They decrease at an anual rate of 23%.
This means that after the first year, the population will be:
P(1) = 300 - 300*(23%/100$) = 300*( 1 - 0.23) = 300*(0.77)
After another year, the population decreases again, so we get:
P(2) = 300*(0.77) - 300*(0.77)*(23%/100$) = 300*(0.77)^2
Here we already can see the pattern, the population in the year t, we will get:
P(t) = 300*(0.77)^t
Then we can see that the correct option is C.
If you want to learn more, you can read:
https://brainly.com/question/16993154