A restaurant uses 44 pounds of potatoes for a party of 1212 people. If they are cooking potatoes for a party of 60 people, what should they do?

Answers

Answer 1
use 5 times more potatoes


Related Questions

Find the degree of the term -5x squared

Answers

The polynomial degree is 33, the leading term is 4x34x3, and the leading coefficient is 44.Polynomial Degree: 33Leading Term: 4x34x3Leading Coefficient: 4
-5x²

The degree of the term is 2, or quadratic

hope this helps

how many gallons will it take to mow a lawn if you maintain the rate of 1/2 gallon of gasoline per 1/4 mowed

Answers

recall that one whole is 1, or in this case since the denominator is 4, then 4/4 is 1 whole, so the whole lawn is 4/4.

[tex]\bf \begin{array}{ccll} gallons&mowed\\ \text{\textemdash\textemdash\textemdash}&\text{\textemdash\textemdash\textemdash}\\ \frac{1}{2}&\frac{1}{4}\\\\ g&\frac{4}{4} \end{array}\implies \cfrac{\frac{1}{2}}{g}=\cfrac{\frac{1}{4}}{\frac{4}{4}}\implies \cfrac{\frac{1}{2}}{\frac{g}{1}}=\cfrac{\frac{1}{4}}{\frac{4}{4}}\implies \cfrac{1}{2}\cdot \cfrac{1}{g}=\cfrac{1}{4}\cdot \cfrac{4}{4} \\\\\\ \cfrac{1}{2g}=\cfrac{1}{4}\implies 4=2g\implies \cfrac{4}{2}=g\implies 2=g[/tex]

Write the number 63 in four different ways

Answers

 63 in four different ways
1) 63 ones
2) 6 tens and 3 ones
3) 3 tens and 33 ones
4) 4 tens and 23 ones

Solution:

we have been asked to write the number 63 in four different ways. It can be done as follows

[tex]63=60+3[/tex]

Here we are just adding 3 to 60 and finally we get 63.

[tex]63=6\times10+3[/tex]

This one of the many way of writing 63.

[tex]63=70-7[/tex]

Here we have used the concept of subtraction to write 63.

[tex]63=7\times10-7[/tex]

Concept of subtraction and multiplication to write the number 63.

Hence  the four ways have been written.


what interest rate is needed for $9,500 to earn $900 in 19 months?

Answers

Answer:

The interest rate is 5.98%.  

Step-by-step explanation:

To find : What interest rate is needed for $9,500 to earn $900 in 19 months?

Solution :

The formula of interest is given by,

[tex]I=P\times R\times T[/tex]

Where,

I is the interest amount I=$900

P is the principle P=$9500

T is the time T=19 months= [tex]\frac{19}{12}[/tex] year.

R is the interest rate

Substitute the value in the formula,

[tex]900=9500\times R\times \frac{19}{12}[/tex]

[tex]R=\frac{900\times 12}{9500\times 19}[/tex]

[tex]R=\frac{10800}{180500}[/tex]

[tex]R=0.0598[/tex]

The rate of interest in percentage is [tex]R=0.0598\times 100=5.98\%[/tex]

Therefore, The interest rate is 5.98%.

To earn $900 from $9,500 in 19 months, an annual interest rate of approximately 5.97% is needed.

To determine the interest rate needed for $9,500 to earn $900 in 19 months, we can use the simple interest formula:

Simple Interest Formula: SI = P × R × T

SI: Simple Interest ($900)

P: Principal ($9,500)

R: Annual Interest Rate (as a decimal)

T: Time (in years)

Convert 19 months into years: 19 months / 12 months/year = 1.5833 years.Substitute the values into the formula: $900 = $9,500 × R × 1.5833.Isolate R: R = $900 / ($9,500 × 1.5833).R = 0.0597, which is approximately 5.97% per year.

translate into an algebraic expression: the difference of six times a number and 8

Answers

6x-8 is the answer to the question

What do March 16, 1948, Feb. 25, 1950, and Aug. 8, 1964 have in common??

Answers

the product of the month and the day is equivalent to the years last two digits

How many elements are in the set (A,B,C)

Answers

The answer is:
A has 25 elements
B has 30 elements
C has 35 elements
the answer to this question is 1 I believe 

True or false: the standard deviation is the square root of the variance.

Answers

Why not look up "standard deviation" yourself, to be sure?  But yes, the std. dev. is the sqrt of the variance.

Answer:

True. The standard deviation is indeed the square root of the variance.

Explanation:

The standard deviation measures the dispersion or spread of data points around the mean in a dataset. It quantifies the average distance of data points from the mean. Mathematically, it's the square root of the variance, which is the average of the squared differences between each data point and the mean. By taking the square root, we return to the original scale of the data, making the standard deviation more interpretable. A higher standard deviation indicates greater variability, while a lower standard deviation suggests that the data points are closer to the mean, signifying less variability within the dataset.

Let a be a rational number and b be an irrational number. Which of the following are true statements?

A. The sum of a and b is never rational
B. The product of a and b is rational
C. b^2 is sometimes rational
D. a^2 is always rational
E. √a is never rational
F. √b is never rational

Answers

a and b would be correct 

Generate a process that would generate random numbers between –1 and 1 for x and y positions of 10000 points and count how many points fall with the circle, then determine an estimated version of π. (see below to generate floating point random numbers. this generation is not needed to describe the process, but to implement the process)

Answers

#!/usr/bin/env python

import random
import math
count_inside = 0
     for count in range(0, 10000): d = math.hypot(random.random(), random.random())
    if d < 1: count_inside += 1
count += 1
print 4.0 * count_inside / count
Final answer:

The question is about using the Monte Carlo method to estimate the value of π, by generating random points in a square, counting how many fall inside a unit circle, and finally using this count to calculate π.

Explanation:

This question involves the implementation of a famous problem in computational mathematics known as the Monte Carlo method for estimating the value of π:

First, initialize a variable, say 'count', to 0. This variable will keep track of the number of points falling within the circle.Next, carry out a 'for' loop to generate 10000 points. Each point will have x and y coordinates, each a random floating point number between -1 and 1.For each generated point (x, y), calculate the distance from the point to the origin (0,0), which is sqrt(x^2 + y^2). If this distance is less than or equal to 1, it means that the point lies within the unit circle, so increment the 'count' variable by one.After all 10000 points have been generated and tested, 'count' will hold the total number of points lying within the circle. To determine an estimation of π, use the formula 4 * (count / total_number_of_points).

This process is based on the mathematical fact that the ratio of the area of a unit circle to the square it is inscribed in is π/4.

Learn more about Monte Carlo method here:

https://brainly.com/question/30847116

#SPJ12

subtract the quotient of 15/3 from the sum of 33 and 7

Answers

quotient is division

 so 15/3 = 5

sum is addition so 33+7 = 40

40-5 = 35

What is the standard form of 14 ten thousands + 12 thousands

Answers

140000 + 12000 = 152000

hope this helps

Suppose John opens a savings account with $1,000 that compounds interest daily. The APR at the time John deposits the account is 3.5%. He makes no withdrawals or deposits. What is his APY to the nearest hundredth of a percent after 1 year?

Answers

[tex]\bf \qquad \qquad \textit{Annual Yield Formula} \\\\ \left. \qquad \qquad \right.\left(1+\frac{r}{n}\right)^{n}-1 \\\\ \begin{cases} r=rate\to 3.5\%\to \frac{3.5}{100}\to &0.035\\ n= \begin{array}{llll} \textit{times it compounds per year} \end{array}\to &365 \end{cases} \\\\\\ \left(1+\frac{0.035}{365}\right)^{365}-1[/tex]

an appliance store sold 360 microwave ovens last year. Of that amount, 3/8 were apartment-sized models. The number of apartment-sized models sold for the year was what?

Answers

3/8 of 360...." of " means multiply

3/8(360) = 1080/8 = 135....so 135 were apartment-sized

multiply:

360 * 3/8 = 360*3 =1080

1080/8 = 135 were apartment sized

solve the following equation for 2 + √4y -3 = 11

Answers

2+√4y-3=11
2+√4y=11+3=14
√4y=14-2=12
root 4y=2y
2y=12,divide both side by 2
y=6

Final answer:

To solve the equation 2 + √(4y - 3) = 11 for y, subtract 2 from both sides, square both sides to remove the square root, then solve for y to find that y = 21.

Explanation:

The question asks to solve the equation 2 + √(4y - 3) = 11 for y. To solve for y, follow the steps below:

First, subtract 2 from both sides of the equation to isolate the square root term: √(4y - 3) = 9.

Now, square both sides of the equation to eliminate the square root: (√(4y - 3))^2 = 9^2, which simplifies to 4y - 3 = 81.

Add 3 to both sides of the equation to isolate the term with y: 4y = 84.

Finally, divide both sides by 4 to solve for y: y = 21.

Therefore, the solution to the equation is y = 21.

Estimate sin pi/3 if sin pi/2 = 1 and sin 0 = 0 and sin pi = 0

Answers

hello :  
sin(π/3) = √3 / 2 
Final answer:

To estimate the value of sin pi/3, which is roughly 1.047 or 60 degrees, we can use standard trigonometric values. Since pi/3 is closer to pi/2 than pi, where sin achieves its maximum of 1, the value of sin pi/3 should be closer to 1 than 0. Standard trigonometric values confirm that sin pi/3 = sqrt(3)/2 = 0.866.

Explanation:

To estimate sin pi/3, we can make use of some standard values in trigonometry. Pi is roughly 3.14, hence pi/3 is roughly 1.047. The sin function gives a result of 1 at pi/2 (or 90 degrees), 0 at 0, and again 0 at pi (or 180 degrees). Thus, it achieves its maximum at pi/2 and then decreases to 0 at pi. Intuitively, since pi/3 (or 60 degrees) is closer to pi/2 than to pi, the sin value at pi/3 should be closer to 1 than to 0. From the standard trigonometric values, we know that sin pi/3 = sqrt(3)/2 which is roughly 0.866.

Learn more about Trigonometry here:

https://brainly.com/question/11016599

#SPJ12

When jumping, a flea rapidly extends its legs, reaching a takeoff speed of 1.0 m/s over a distance of 0.50 mm . part a what is the flea's acceleration as it extends its legs?

Answers

The flea's acceleration is 1,000 m/s².

Further explanation

The problem we overlook this time is about uniformly accelerated motion.

The list of variables to be considered is as follows.

[tex]\boxed{u \ or \ v_i = initial \ velocity}[/tex]

[tex]\boxed{u \ or \ v_t \ or \ v_i = terminal \ or \ final \ velocity}[/tex]

[tex]\boxed{a = acceleration \ (constant)}[/tex]

[tex]\boxed{d = distance \ travelled}[/tex]

Given that a take-off speed of 1.0 m/s over a distance of 0.50 mm.  

The initial speed was zero from rest.  It was asked about flea's acceleration when she extends her legs.

The formula we follow for this problem are as follows:

[tex]\boxed{ \ v^2 = u^2 + 2ad \ }[/tex]

a = acceleration (in m/s²)u = initial velocity = 0 m/sv = take off speed = 1.0 m/sd = distance travelled = 0.50 mm

Converted 0.50 mm to meters: [tex]\boxed{0.50 \ mm = 0.50 \times 10^{-3} \ m = 5.0 \times 10^{-4} \ m}[/tex]

Steps:

We set the formula so that the acceleration becomes the subject.

[tex]\boxed{ \ v^2 = u^2 + 2ad \ }[/tex]

[tex]\boxed{ \ v^2 - u^2 = 2ad \ }[/tex]

[tex]\boxed{ \ 2ad = v^2 - u^2 \ }[/tex]

[tex]\boxed{ \ a = \frac{v^2 - u^2}{2d} \ }[/tex]

Substitute all data into equations.

[tex]\boxed{ \ a = \frac{(1.0)^2 - (0)^2}{2(5.0 \times 10^{-4})} \ }[/tex]

[tex]\boxed{ \ a = \frac{1}{10 \times 10^{-4}} \ }[/tex]

[tex]\boxed{ \ a = \frac{1}{1 \times 10^{-3}} \ }[/tex]

[tex]\boxed{ \ a = 1 \times 10^{3}\ = 1,000 \ m/s^2 \ }[/tex]

We get the flea's acceleration, i.e., 1,000 m/s².

Learn moreAbout scientific notation https://brainly.com/question/7263463Finding the mass of substance https://brainly.com/question/4053884Converting in cubic https://brainly.com/question/1446243

Keywords: flea, when jumping, rapidly extends its legs, take-off speed, initial velocity, distance, acceleration, uniformly accelerated motion, convert

The Flea acceleration as it extends its leg is [tex]\fbox{\begin\\\ 1000\ m/s^{2}\\\end{minispace}}[/tex].

Further explanation:

Given:

The takeoff speed of the flea is [tex]1.0\ \text{m/s}[/tex].

The distance cover by flea is [tex]0.50\ \text{m/s}[/tex].

To find:

The acceleration of the flea as it extended it legs.

Formula used:

The acceleration of the flea can be obtained by the given formula.

[tex]\fbox{\begin\\\ \math v^{2}=u^{2}+2as\\\end{minisapce}}[/tex]  ....(1)

Here, [tex]v[/tex] is the final velocity of flea, [tex]u[/tex] is the initial velocity of flea, [tex]a[/tex] is the acceleration of the flea, [tex]s[/tex] is the distance cover by the flea.

Calculation:

The initial velocity of flea is [tex]0[/tex].

The final velocity of flea is [tex]1.0\text{m/s}[/tex].

The distance cover by flea is in millimeter.

Convert millimeter into meter as follows.

[tex]\fbox{\begin\\\ \begin{aligned}0.50 \text{ mm}&=\dfrac{0.50}{1000}\text{ m}\\&=0.0005\text{ m}\end{aligned}\\\end{minispace}}[/tex]

Now substitute [tex]0[/tex] for [tex]u[/tex], [tex]1.0[/tex] for [tex]v[/tex] and [tex]0.0005[/tex] for [tex]s[/tex] in equation (1) to obtain the value of acceleration.

[tex]\begin{aligned}1^{2}&=0^{2}+(2a\times(0.0005))\\1&=0.001a\\a&=\dfrac{1}{0.001}\\a&=1000\end{aligned}[/tex]

Therefore, the acceleration of the flea is as it extends its leg is [tex]\fbox{\begin\\\ 1000\ m/s^{2}\\\end{minispace}}[/tex].

Learn more:

1. Solution of linear equation: //brainly.com/question/1682776

2. Magnitude of the acceleration https://brainly.com/question/1597065

Answer details:

Grade: Middle school

Subject: Mathematics

Chapter: Speed and distance

Keywords:  Flea, jump, legs, takeoff speed, acceleration , distance cover, 0.05 mm, 1000 meter per second square. Initial velocity, Final velocity

Write an equation in​ slope-intercept form of the line that passes through the given point and is parallel to the graph of the given equation.

​(−5​,−7​); y=−2x+1

Write an equation for the line in​ slope-intercept form.

Answers

Parallel lines have the same slope. Hence, using the base equation of y=mx+b, plug in the given value for y and the given value for x into the equation y=-2x+b to solve for b:
-7=-2(-5)+b
-7=10+b 
b=-17
Hence the equation would be y=-2x-17

Answer:

y=-2x-19

Step-by-step explanation:

this is the right answer , i tried the other answer for this and it said it was wrong so

julia has just gotten a new job paying 80,000 a year . what would be her estimated federal taxes?


Answers

0.28*80 000=22 400
She would pay $22 400 in federal taxes

Julia estimated federal taxes will be $ 22,400.

What is Percentage?

To determine the quantity or percentage of something in terms of 100, use the percentage formula. Per cent simply means one in a hundred. With the percentage formula, a number between 0 and 1 can be expressed. A number that is expressed as a fraction of 100 is what it is. It is mostly used to compare and determine ratios and is represented by the symbol %.

Given:

Julia has just gotten a new job paying 80,000 a year .

From the figure the tax will be of 28%.

So, Julia estimated federal taxes will be

= 80,000 x 28/100

= 800 x 28

= $ 22,400

Learn more about Percentage here:

https://brainly.com/question/29306119

#SPJ2

how many times larger is the value of the 8 in 80,351 than the value of the 8 in 95,852

Answers

I believe it is 100 times larger as it is in the hundreds place for one, and the ten thousands place for the other
10000/100= 100
The 8 in 80,351 is 100 times larger than the value of the 8 in 95,852 because the 8 in 95,852 is in the hundreds place and the 8 in 80,351 is in the ten thousands place. 800x100 is 80,000.

Find the equation of the curve that passes through the point 0, 1 6 and whose slope at each point (x, y) is − x 12y .

Answers

The equation is [tex]\(x^2 + 12y^2 - 3072 = 0\),[/tex] obtained from integrating [tex]\(12y \, dy = -x \, dx\)[/tex] with the initial condition.

To find the equation of the curve passing through the point (0, 16) with a slope given by [tex]\( \frac{{dy}}{{dx}} = -\frac{x}{12y} \),[/tex] you can use separation of variables.

Given that [tex]\( \frac{{dy}}{{dx}} = -\frac{x}{12y} \)[/tex], we can rewrite it as:

[tex]\[ 12y \, dy = -x \, dx \][/tex]

Now, integrate both sides:

[tex]\[ \int 12y \, dy = \int -x \, dx \]\[ 6y^2 = -\frac{1}{2}x^2 + C \][/tex]

Given that the curve passes through the point (0, 16), substitute these values into the equation:

[tex]\[ 6(16)^2 = -\frac{1}{2}(0)^2 + C \]\[ 6(256) = C \]\[ C = 1536 \][/tex]

Therefore, the equation of the curve is:

[tex]\[ 6y^2 = -\frac{1}{2}x^2 + 1536 \][/tex]

This can also be written in standard form as:

[tex]\[ x^2 + 12y^2 - 3072 = 0 \][/tex]

So, the equation of the curve is [tex]\( x^2 + 12y^2 - 3072 = 0 \).[/tex]

The sum of three consecutive numbers is 72. What is the largest of these numbers?

Answers

3 consecutive numbers....x, x + 1 and x + 2

x + x + 1 + x + 2 = 72
3x + 3 = 72
3x = 72 - 3
3x = 69
x = 69/3
x = 23

x + 1 = 23 + 1 = 24
x + 2 = 23 + 2 = 25

so ur numbers are 23,24,25 with 25 being the largest

25  Is the largest number too add up to the sum.

1.4t-0.4(t-3.1)=5.8

What is T?

Answers

1.4t-.4t+1.24=5.80

t+1.24=5.80

t=4.56

what percent of 1600 is 20?

Answers

Set up a proportion like so. Remember that percent means per 100.

20/1600= x/100

Cross multiplication:
100*20=2000
2000/1600= 1.25=x

Final answer: 1.25%

20 is 1.25% of 1600.

(Part / Whole) * 100 = Percentage

20 by 1600:

20 / 1600 = 0.0125.

Multiply the result by 100 to get the percentage:

0.0125 * 100

= 1.25%.

So, 20 is 1.25% of 1600.

Find the derivative of f (x)=(x^2+1)^3 (x^2+2)^6 using chain rule.

Answers

[tex]\bf f(x)=(x^2)^3(x^2+2)^6\impliedby \textit{product rule on the factors} \\\\\\ \cfrac{df}{dx}=[ 3(x^2+1)^2(2x)][(x^2+2)^6]~+~(x^2+1)^3[6(x^2+2)^5(2x)] \\\\\\ \cfrac{df}{dx}=[6x(x^2+1)^2(x^2+2)^6]~+~[12x(x^2+1)^3(x^2+2)^5] \\\\\\ \cfrac{df}{dx}=\stackrel{\textit{common factor}}{6x(x^2+1)^2(x^2+2)^5}[(x^2+2)+2(x^2+1)] \\\\\\ \cfrac{df}{dx}=6x(x^2+1)^2(x^2+2)^5[3x^2+4][/tex]

find two consecutive odd integers whose product is 1 less than 6 times their sum. Domain for the smallest : {-1, 1, 11}

Answers

Let x be the 1st odd number, and x+2 the second odd consecutive number:

(x)(x + 2) = 6[((x) + (x+2)] -1
x² + 2x = 6(2x + 2) - 1

x² + 2x = 12x +12 - 1
And x² - 10x - 11=0

Solve this quadratic expression:

x' = [+10 +√(10²- 4.(1)(-11)]/2  and x" = [+10 -√(10²- 4.(1)(-11)]/2

x' = [10 + √144]/2      and  x" = [10 - √64]/2

x' = (10+12)/2    and x" = (10-12)/2

x = 11 and x = -1

We have 2 solutions that satisfy the problem:

1st for x = 11, the numbers at 11 and 13
2nd for x = - 1 , the numbers are -1 and +1
If you plug each one in the original equation :(x)(x + 2) = 6[((x) + (x+2)] -1
you will find that both generates an equlity


Is a measure of dispersion that indicates how much scores in a sample vary around the mean of the sample?

Answers

The measure of dispersion that indicates how much scores in a sample vary around the mean of the sample is the standard deviation.
The measure is called STANDARD DEVIATION.
Standard deviation is a mathematical measure that is used to evaluate the difference between the mean value of a set of number and each value in the group. It is calculated as the square root of variance by determining the variation between each data point relative to the mean.

How many gallons of a 80% antifreeze solution must be mixed with 60 gallons of 30% antifreeze to get a mixture that is 70% antifreeze?

Answers

Let x be the number of gallons.

(x)(80%) + (60)(30%) = (x+60)((70%)

0.8x + 18 = 0.7x +42

0.8x - 0.7x = 42-18

0.1x = 24

and x = 240 Gal.

Q=3X+9XZ solve for X

Answers

The required solution is X=Q/3+9Z.

It is required to find the solution is X.

What is equation?

An equation is a mathematical statement that is made up of two expressions connected by an equal sign. Equation, statement of equality between two expressions consisting of variables and/or numbers.

Given:

The given expression is

Q=3X+9XZ

We move all terms to the left side and equate to find the value of x we have.

Q=X(3+9Z)

By taking common to x and divide and move each term to left side, we have

X=Q/3+9Z

Therefore, the required solution is X=Q/3+9Z.

Learn more about equation here:

brainly.com/question/5473111

#SPJ2

is a integer a rational number

Answers

yes. it is. a rational number includes whole,natural and integers
Yes, it is. Integers, whole numbers, and natural numbers are all rational numbers. 
Other Questions
How does the cylindrical shape of the palisade mesophyll cells increase the amount of photosynthesis that the leaf can carry out? Which of the following is a correctly written compound word?A. Spur of the moment-decisionB. Thirty oneC. Quickly-runningD. Self-evident Why did the US government think internment camps were necessary during World War II pre cal/cal master neededg(x)={ ax-3, x-2What value would the function g(x) have point discon. at x=-2 how to find? What is the most obvious sign of bias in a historical text? Solve: $|2x - 1| = |3x + 5|$. write your answers as a list of numbers, separated by commas,e.g. "23, 19" (but without the quotes). Which group of words is an appositive phrase?The restaurant, an oyster house, will be closing at the end of the summer, but it will open again next June.A) will open B) of the summer C) an oyster house D) will be closing Give A={a,b,c},how many subsets does A have including 0? The penny size d is given by the literal equation d = 4n - 2, solve for n How are the values of the eights in 880 relared Find two consecutive even numbers such that the sum of the number and twice the greater number is 100 Cage company had income of $350 million and average invested assets of $2,000 million. its return on assets (roa) is Now suppose that the 5 (identical) prizes will be distributed among the 8 people. a winner can receive more than one prize. in how many ways could the 5 prizes be distributed? 1) a) In ONE sentence only, how is telomerase activity different from DNA polymerase activity during DNA elongation? b) In ONE sentence only, how is helicase activity different from telomerase activity. An electrician earns $110 after his first hour of working for a client. His total pay based on the number of hours worked can be represented using the sequence shown.110, 130, 150, 170, ...Which recursive formula can be used to determine the total amount of money earned for each successive hour worked based on the amount of money currently earned? what is the yo form of the present tense verb parecer? a. Parezcob. Pareciac. Parecemosd. Pareces what is 25.6 divided by 0.5 = a community college might grant all of the following degress except a masters degree?a bachelors degree?a technical program certificate?or an associates degree? How do you write 7/20 as a percentage?? I need help I am trying to find ft Steam Workshop Downloader