There is a box of colored marbles on the counter top. There are 24 blue, 16 green, and 56 red.

Write the ratio of green marbles to red marbles. Don't forget to put your answer in simplest form.

Answers

Answer 1

Answer:

i think its 2:7

Step-by-step explanation:

heres why

16 and 56 both have a number that equals which it is 8

so u divide

16/8=2

56/8=7

16:56 in simplest form is 2:7


Related Questions

1.36 km is how many cm

Answers

Answer:

136000 cm

Step-by-step explanation:

I think it's helps you

A scientist has two solutions, which she has labeled Solution A and Solution B. Each contains salt. She knows that Solution A is 40 % salt and Solution B is 90 % salt. She wants to obtain 50 ounces of a mixture that is 80 % salt. How many ounces of each solution should she use?

Answers

Answer:

The scientist must use 10 ounces of Solution A and 40 ounces of Solution B.

Step-by-step explanation:

Since a scientist has two solutions, which she has labeled Solution A and Solution B, each containing salt, and she knows that Solution A is 40% salt and Solution B is 90% salt, and she wants to obtain 50 ounces of a mixture that is 80% salt, to determine how many ounces of each solution should she use the following calculation must be performed:

100 x 0.9 + 0 x 0.4 = 90

90 x 0.9 + 10 x 0.4 = 85

80 x 0.9 + 20 x 0.4 = 80

50 x 0.8 = 40

Therefore, the scientist must use 10 ounces of Solution A and 40 ounces of Solution B.

Landon has a points card for a movie theater. He receives 70 rewards points just for signing up. He earns 5.5 points for each visit to the movie theater. He needs 125 points for a free movie ticket. How many visits must Landon make to earn a free movie ticket?

Answers

Answer:

10 times

Step-by-step explanation:

125-70 bonus points =55 points left.

55 divided by 5.5 per visit = 10 times to get a free movie ticket.

To verify it is correct:

10 visits x 5.5 points each = 55 points total

55 + 70 bonus points = 125 for a free ticket.

Answer:

10

Step-by-step explanation:

Let x= number of visits

5.5x+70=

125

subtract -70 from 70 and 125

5.5x=  55

divide both sides by 5.5

x=10

:)

squares and rectangles both have four angles that measure 45° each true or false​

Answers

Answer:

False

Step-by-step explanation:

They both have four angles that measure 90°.

Hope I helped.

No it isnt true. A rectangle or a square has right angles that have a degree of 90 so its actually 90 degrees.

Which is the better definition of line of best fit?

Answers

The line of best fit , also called a trendline or a linear regression, is a straight line that best illustrates the overall picture of what the collected data is showing. It helps us to see if there is a relationship or correlation between the two factors being studied. This trendline helps us to predict future events relating to the data being studied. Hope this helped!

A line of best fit guides a line through a scatter plot of data points that best describes the association between those points.

What is  line of best fit?

A line of best fit guides a line through a scatter plot of data points that best describes the association between those points. Statisticians typically utilize the least squares approach to arrive at the geometric equation for the line, either through manual computations or regression analysis software.

A line of best fit can be approximately specified utilizing an eyeball the method by marking a straight line on a scatter plot so that the numeral of points above the line and below the line stands about equal (and the line passes via as many points as possible).

To learn more about line of best fit refer to;

https://brainly.com/question/1518824

#SPJ2

A computer and printer cost $1128. The cost of the computer is three times the cost of the printer. Find the cost of each item. (Also have a great day :D)

Answers

Answer:

Computer 752

Printer 376

Step-by-step explanation:

1128./3=376

1128.-376=752

If x + y = 5 and x - y = 3, then x^2 - y^2 = ?
A) 9
B) 15
C) 16
D) 25
E) 34
With steps pleaseee

Answers

Answer:

B) 15

Step-by-step explanation:

Using basic logic we find that x = 4 and y = 1

4^2 = 16

1^2 = 1

16 - 1 = 15

Gina is shopping for a new bicycle. The price of the bicycle is $300 and there is an 8% sales tax. Gina wants to know the total price of the bicycle including soles tax. How much sales tax does Gina pay on the bicycle? Enter the amount in the table.​

Answers

70$ but I’m not 100% sure

Answer:

24

Step-by-step explanation:

The person above me is incorrect . I got it right on the i-Ready Quiz!

Other Questions
Write the log equation as an exponential equation. You do not need to solve for x.log(x+2) (4x) = 3x + 2Please answer ASAP PLEASE HELP ITS MUSIC I WILL MARK BRAINLIEST!! Why has some tropical grassland in Africa become desert, like the Sahel? How are imperialized people viewed by the writer? Implement the above in c++, you will write a test program named create_and_test_hash.cc . Your programs should run from the terminal like so:./create_and_test_hash should be "quadratic" for quadratic probing, "linear" for linear probing, and "double" for double hashing. For example, you can write on the terminal:./create_and_test_hash words.txt query_words.txt quadratic You can use the provided makefile in order to compile and test your code. Resources have been posted on how to use makefiles. For double hashing, the format will be slightly different, namely as follows:./create_and_test_hash words.txt query_words.txt double The R value should be used in your implementation of the double hashing technique discussed in class and described in the textbook: hash2 (x) = R (x mod R). Q1. Part 1 (15 points) Modify the code provided, for quadratic and linear probing and test create_and_test_hash. Do NOT write any functionality inside the main() function within create_and_test_hash.cc. Write all functionality inside the testWrapperFunction() within that file. We will be using our own main, directly calling testWrapperFunction().This wrapper function is passed all the command line arguments as you would normally have in a main. You will print the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 2 (20 points) Write code to implement double_hashing.h, and test using create_and_test_hash. This will be a variation on quadratic probing. The difference will lie in the function FindPos(), that has to now provide probes using a different strategy. As the second hash function, use the one discussed in class and found in the textbook hash2 (x) = R (x mod R). We will test your code with our own R values. Further, please specify which R values you used for testing your program inside your README. Remember to NOT have any functionality inside the main() of create_and_test_hash.ccYou will print the current R value, the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 3 (35 points) Now you are ready to implement a spell checker by using a linear or quadratic or double hashing algorithm. Given a document, your program should output all of the correctly spelled words, labeled as such, and all of the misspelled words. For each misspelled word you should provide a list of candidate corrections from the dictionary, that can be formed by applying one of the following rules to the misspelled word: a) Adding one character in any possible position b) Removing one character from the word c) Swapping adjacent characters in the word Your program should run as follows: ./spell_check You will be provided with a small document named document1_short.txt, document_1.txt, and a dictionary file with approximately 100k words named wordsEN.txt. As an example, your spell checker should correct the following mistakes. comlete -> complete (case a) deciasion -> decision (case b) lwa -> law (case c)Correct any word that does not exist in the dictionary file provided, (even if it is correct in the English language). Some hints: 1. Note that the dictionary we provide is a subset of the actual English dictionary, as long as your spell check is logical you will get the grade. For instance, the letter "i" is not in the dictionary and the correction could be "in", "if" or even "hi". This is an acceptable output. 2. Also, if "Editors" is corrected to "editors" that is ok. (case B, remove character) 3. We suggest all punctuation at the beginning and end be removed and for all words convert the letters to lower case (for e.g. Hello! is replaced with hello, before the spell checking itself).Do NOT write any functionality inside the main() function within spell_check.cc. Write all functionality inside the testSpellingWrapper() within that file. We will be using our own main, directly calling testSpellingWrapper(). This wrapper function is passed all the command line arguments as you would normally have in a main Please help me with this homework squares and rectangles both have four angles that measure 45 each true or false Landon has a points card for a movie theater. He receives 70 rewards points just for signing up. He earns 5.5 points for each visit to the movie theater. He needs 125 points for a free movie ticket. How many visits must Landon make to earn a free movie ticket? A computer and printer cost $1128. The cost of the computer is three times the cost of the printer. Find the cost of each item. (Also have a great day :D) What term is used by chemists to quantitatively describe a solution in which a relatively small amount of solute is dissolved? Ordena los trminos del 1 al 5, de tal manera quecada trmino se construya del trmino (s) anterioExplica por qu cada figura est en el lugar queeliges. Los trminos son: cuadriltero, cuadradorombo, rectngulo y paralelogramo 1. The energy stored in glucose is converted into a usable form, the energy source of all cells, ___________________ _________________ triphosphate, or ____________.2. The equation for respiration is:______________ + O2 -----> CO2 + H2O + ____________3. Because oxygen is used to produce ATP, this is referred to as an _______________ process.4. The release of energy cannot occur all at once. Too much ______ would be released inside the cells. Instead, the release of energy occurs in a series of ________________________________ small steps.5. Plants do photosynthesis only when there is light, during the day. So, they take in _________ only during the day. But, they do respiration all the time, 24 hours a day. All living things do cellular respiration all the time or they are not alive. So, all organisms use _________, all the time. hey can someone help me with this immediately! ill be giving out brainiest if u dont leave a link and dont guess! im timed pls hurry. What is the highest court in the state? the juvenile court the appeals court the supreme court the district court One main goal That is not part of the foreign policy isincrease democracy and freedom in developing nations protecting America and valuesmenace social issues within the home countrysupport human rights around the world PLSZSZ HELPPPP The daily low temperaturesfor Fairbanks, Alaska areshown in the table. Whatwas the mean lowtemperature for Fairbanks,Alaska for January 1st-4th? If x + y = 5 and x - y = 3, then x^2 - y^2 = ?A) 9B) 15C) 16D) 25 E) 34With steps pleaseee Which One Doesn't Belong?Choose the shape that does NOT belong with theothers.Explain your thinking . who was the last greatgreat roman emperor what is the meaning of life