you are ordering pizzas for a birthday party and getting them delivered to your house. You order 12 pepporoni pizzas, 8 cheese pizzas, and 4 hawaiian pizzas. There is a delivery fee of $5.50. If your total comes to $184.54, how much was each pizza? Assume that every pizza was the same amount.
sarah teaches craft classes. she has 214 bags of beads. each bag has enough beads for 22 bracelets. she estimates tht since 200 x 20 = 4000 there are enough beads for at least 4000 bracelets. tell how you can critique sarahs reasoning
Final answer:
Sarah estimated that she could make at least 4,000 bracelets from 214 bags of beads by simplifying the calculation to 200 bags with enough beads for 20 bracelets each. Her estimate was conservative, as the calculation of 214 bags multiplied by 22 bracelets per bag totals 4,708 bracelets, which is greater than her estimate.
Explanation:
To critique Sarah's reasoning, we need to compare her estimate with the actual number of bracelets that can be made with the beads she has. She has 214 bags of beads, each with enough beads for 22 bracelets. To find the actual number of bracelets possible, we multiply the number of bags by the number of bracelets each bag can make:
214 bags × 22 bracelets per bag = 4,708 bracelets.
Sarah estimated that there were enough beads for at least 4,000 bracelets, based on the approximation that 200 bags with enough beads for 20 bracelets each would yield 4,000 bracelets. Although her estimation method simplifies the calculation by rounding down to manageable numbers, the actual total (4,708 bracelets) is greater than her estimate. By using this estimation method, Sarah has effectively ensured she will have more than enough beads for her classes, as her estimate is lower than the actual number.
If g(x) =5x-3 and h(x) = sqrt x find (goh) (4)
Answer:
(goh) (4) = 7
Step-by-step explanation:
g(x) =5x-3 and h(x) = sqrt x
[tex]g(x)= 5x-3[/tex] and [tex]h(x)= \sqrt{x}[/tex]
WE need to find (g o h)(4)
[tex](g o h)(x) = g( h(x))[/tex]
Plug in h(x) in g(x)
we know [tex]h(x)= \sqrt{x}[/tex]
Plug it in g(x)
[tex](g o h)(x) = g( h(x))=g(\sqrt{x})[/tex]
Now plug in sqrt(x) in g(x)
[tex](g o h)(x) = g( h(x))=g(\sqrt{x})= 5\sqrt{x} - 3[/tex]
To find (g o h)(4), plug in 4 for x
[tex](g o h)(4) = g( h(4))=g(\sqrt{4})= 5\sqrt{4} - 3= 5(2)-3= 7[/tex]
(goh) (4) = 7
PLEASE HELP! number 18
How should the number 1.230 x 103 be properly expressed as a decimal?
Final answer:
To express [tex]1.230 \times 10^3[/tex] as a decimal, you move the decimal point three places to the right, resulting in the number 1230.
Explanation:
The question asks how the number [tex]1.230 \times 10^3[/tex] should be properly expressed as a decimal. To convert from scientific notation to decimal form, we multiply the numerical part of the expression by 10 raised to the power indicated by the exponent. In this case, 1.230 is multiplied by [tex]10^3,[/tex] which means 1.230 needs to be multiplied by 1000 (because 103 = 1000). Therefore, we move the decimal point three places to the right (since the exponent is positive), transforming [tex]1.230 \times 10^3[/tex] into 1230.
what is the written form of 7.007?
The written form of 7.007 is "seven and seven thousandths." It is derived from the digit 7 representing the units place, and the last digit 7 representing the thousandths place.
The written form of 7.007 is "seven and seven thousandths." To understand the structure of this decimal:
The digit 7 before the decimal point represents the units place, or 'seven'.
The first digit 0 after the decimal point represents the 'tenths' place, which is zero in this case.
The second digit 0 after the decimal point represents the 'hundredths' place, which is also zero.
The third digit 7 after the decimal point is in the 'thousandths' place, which means we have seven thousandths.
Combining these, we get the phrase "seven and seven thousandths," which is the written form of the number 7.007.
Please help me!! I'm terrible at math
A class is made up of 14 girls and 15 boys. Use the given information and give the example of the following:
a) Part-to-part ratio
b) part to whole ratio
c)Write the ratio of girls to the whole class in the form of 1:n
Answer:
i would say part to whole
Step-by-step explanation:
Write the following ratio using two other notations
3/2
8/9(54x−36)+2=−34(−40+16x)+90x
Answer:-2
Step-by-step explanation:
Step 1: Simplify both sides of the equation.
Step 2: Subtract 78x from both sides.
Step 3: Add 30 to both sides.
Step 4: Divide both sides by -30.
x=−2
The expression as 8/9(54x−36)+2=−34(−40+16x)+90x gives the value of x is -2.
What are equivalent expressions?Those expressions who might look different but their simplified forms are same expressions are called equivalent expressions.
To derive equivalent expressions of some expression, we can either make it look more complex or simple. Usually, we simplify it.
Given ;
8/9(54x−36)+2=−34(−40+16x)+90x
First we need to use the distributive property
48x-32+2=30-12x+90
Now then add or subtract like terms,
48x-30=30+78x
Then subtract 48x
-30=30 +30x
Now, then -30
-60=30x
then multiply by 30
We get the value of x
x=−2
Therefore, the expression as 8/9(54x−36)+2=−34(−40+16x)+90x gives the value of x is -2.
Learn more about expression here;
https://brainly.com/question/14083225
#SPJ6
29,998 round to place underline digit which is 9
At 3pm, Mikayla’s shadow was 1.2 meters long. Mikayla is 1.7 meters tall. She measures a tree’s shadow to be 7.5 meters. How tall is the tree?
How do you write 3.125 expanded form
Give a recursive algorithm matrix-chain-multiply(a, s, i, j) that actually performs the optimal matrix-chain multiplication for a chain of matrices
Matrix-chain-multiply is a recursive algorithm used to find the optimal matrix multiplication for a chain of matrices.
Explanation:Matrix chain multiplication is a dynamic programming problem that aims to find the most efficient way to multiply a chain of matrices. We can solve this problem using a recursive algorithm called matrix-chain-multiply.
The algorithm takes four parameters: the matrix chain a, an array s to store the optimal split points, and indices i and j that determine the subchain to be multiplied. The base case of the recursive algorithm is when i and j are equal, in which case we simply return a[i].
For any other case, we iterate through all possible split points and recursively calculate the number of scalar multiplications required. We then select the split point that minimizes the required scalar multiplications. The overall complexity of the algorithm is O(n^3), where n is the number of matrices in the chain.
Learn more about Matrix Chain Multiplication here:https://brainly.com/question/21852019
#SPJ12
what is -1.3 ≥ 2.9 -0.6r graph the solution
Express (0.0006) in engineering notation.
812,000,006 in expanded form
Dominic earns 285 per week plus an 8% commission rate on all his sales. If dominic sell 4213 worth of merchandise in one week how much will his total earnings for the week be?
Dominic's total earnings for the week are calculated by adding his fixed salary of $285 to his commission, which is 8% of his sales. The commission on $4,213 worth of sales is $337.04, resulting in total earnings of $622.04.
Explanation:The question requires us to calculate Dominic's total earnings for the week based on his fixed salary and the commission he makes from sales. Dominic earns a fixed amount of $285 per week plus an 8% commission from his sales. To find his total earnings, we need to calculate his commission from the $4,213 worth of merchandise he sells.
Firstly, we convert the 8% commission rate into decimal form by dividing by 100, which gives us 0.08. Then, we multiply the total sales amount by this decimal to find the commission amount:
Commission = Total Sales × Commission RateCommission = $4,213 × 0.08Commission = $337.04Next, we add the commission to Dominic's fixed salary to get his total earnings for the week:
Total Earnings = Fixed Salary + CommissionTotal Earnings = $285 + $337.04Total Earnings = $622.04Therefore, Dominic's total earnings for the week will be $622.04.
What does 75,254 round up to of the 7 is underlined?
How many atoms of Oxygen (O) are in H3OClO4
Which of the following expressions is not equal to 0.00055? 55 • 10-5 5.5 • 10-4 5.5 • 104 0.55 • 10-3
Answer:
(C)
Step-by-step explanation:
The given expression is :
[tex]0.00055[/tex]
which on simplifying, we get
[tex]\frac{55}{100000}=55{\times}10^{-5}[/tex]
The given expression can be easily rewritten as:
[tex]5.5{\times}10^{-4}[/tex] and [tex]0.55{\times}10^{-3}[/tex]
but [tex]5.5{\times}10^{4}=55000{\neq}0.00055[/tex]
Thus, Option (C) is the expression which is not equal to the given expression.
6. A line that passes through the point (–1, 3) has a slope of 2. Find another point on the line. A. (0, 5) B. (–3, 2) C. (1, 4) D. (1, 5)
The correct answer is A. (0,5)
Write the number with the same value as 32 tens
Suppose that two cards are dealt from a standard 52-card poker deck. let a be the event that the sum of the two cards is 8 (assume that aces have a numerical value of 1). how many outcomes are in a?
Parallel lines p and q are cut by two non-parallel lines, m and n, as shown in the figure.
The value of the x and y are 78° and 115°
What are parallel lines?Parallel lines are coplanar infinite straight lines that do not intersect at any point.
Parallel planes are planes in the same three-dimensional space that never meet.
Parallel curves are curves that do not touch each other or intersect and keep a fixed minimum distance.
Given is a figure of parallel lines, m and n, we need to find the values of x and y,
x = 180°-102° [alternate interior angles and linear pair]
x = 78°
y = 115° [corresponding angle]
Hence, the value of the x and y are 78° and 115°
Learn more about parallel lines, click;
https://brainly.com/question/16701300
#SPJ3
What is the maximum value of 13.7 when rounding to the nearest tenth
You can spend up to $35 on a shopping trip.
a. You want to buy a shirt that costs $14. Write and solve an inequality that represents the amount of money you will have left if you buy the shirt.
b. You notice that the shirt is on sale for %30 off. How does this change the inequality?
c. Do you have enough money to buy the shirt that is on sale and a pair of pants that cost $23? Explain.
What is 24/42 in the simplest form?
what is 2 2/3 x 15 plz help for my hw
chase drew the number line below to show -4 + (-3). Is his model accurate? If not, tell what is wrong with his model.
Chase's model is only accurate if it shows starting at -4 on a number line and moving 3 units left to land at -7. Otherwise, the model requires correction to accurately portray the sum of -4 and -3.
The student's question relates to the operation of adding two negative numbers on a number line. When adding -4 and -3, you start at -4 on the number line and move 3 units to the left because you're adding another negative number. If Chase's model does not show starting at -4 and moving 3 units left to end at -7, then his model is inaccurate. To correct the model, ensure that the number line accurately reflects this movement and resulting position on the number line.