7. The answer is letter A or letter D
Find the next two terms in the sequence.

40, 10, –20, –50, . . .

A.
60, 80

B.
–80, –110

C.
–70, –100

D.
–70, –90

Answers

Answer 1

Answer:

B.

–80, –110

Step-by-step explanation:

-80 and -110

It is an arithmetic sequence. The difference = -30. It is the difference between each number in the sequence: 10-40=-30

-50-30=-80

-80-30 =-110

-80

First Identify the sequence being made here.

10-40 = -30

-20-10 = -30

-50-(-20) = -30

Therefor this pattern is decreasing by a rate of 30 so to continue this, just subtract 30 from -50.

-50-30 = -80

The next term is -80.

Hope I helped!

Answer 2
It should be B because all of them subtract 30...

Related Questions

resuelve la inecuación

(3x<15)

Answers

Answer:

x<5

Step-by-step explanation:

(3x<15)

Divide both sides by 3. Since 3 is positive, the inequality direction remains the same.

x<15/3

Divide 15 by 3 to get 5.

x<5

2/3 - 3/2y + 1/3y + 4 = 0​

Answers

Answer:

y = 4

Step-by-step explanation:

(2/3 + 4) + (-3/2y + 1/3y) = 0

(-3/2y + 1/3y) = -4 2/3

-9/6y + 2/6y = -14/3

-7/6y = -14/3

cross-multiply:

-21y = -84

y = 4

Answer:

y = 4

Step-by-step explanation:

Please use parentheses for clarity, remembering what big differences they make in expression values.

I will assume that your "2/3 - 3/2y + 1/3y + 4 = 0​" actually means

2/3 - (3/2)y + (1/3)y + 4 = 0​

The LCD here is 6, which is the product of the denominators 2 and 3.

Then your "2/3 - 3/2y + 1/3y + 4 = 0​" becomes:

                     4  - 9y    + 2y + 24 = 0, which simplifies to:

                     28 - 7y = 0.  Solving this, we get y = 4

The parabola is swached vertically by a factor of 5.

Answers

Answer:

answer below

Step-by-step explanation:

I think you mean "squashed" or "stretched" vertically by a factor of 5.

f(x) is the original parabola equation

g(x) = 5f(x) is vertically stretched by a factor of 5

(x,y) -> (x , 5y)

pls help meeeeeeeeeeeeee

Answers

Answer:

the right answer is:

(A) [tex]2+\frac{1}{2}a[/tex]

Step-by-step explanation:

You take the equations that the exercise give you:

x + y = 4x - y = a

Now you clear the "y" variable in any equation you want, in this case, I'm gonna use the second equation:

x - y = a-y = a - x

   3. y =  x - a

And now, you'll replace this third equation in the equation you didn't take (the first in this case).

x + y = 4x + (x - a) = 4x + x - a = 4

Add the x variables:

2x - a = 42x = 4 + ax = (4 + a) / 2

That's the answer of the exercise, but you can represent this in this form:

x = (4 + a) / 2    ↔  [tex]x = \frac{4}{2} + \frac{1}{2} a[/tex]x = (4 + a) / 2    ↔  [tex]x = 2+ \frac{1}{2} a[/tex]

By this reason, the right answer is [tex]x = 2+ \frac{1}{2} a[/tex].

please help !! :)))

Answers

hahahahahahahahahahahahhaahahgahaahgagahagahahah
C. Line segments that have the same length

Classify the pair of angles. Then find the value of x

Answers

Answer:

The angles are acute and x should be 243. Not sure if that's what you are looking for but good luck!

Answer:

I need to know the choices in the blank box before I answer that part of the question.

Step-by-step explanation:

180-117=63

x=63

I cant do this please help me i will give brainliest

Answers

Answer:

Here, I graphed this especially for you.

Check attachment.

Other Questions
What was guatemala doing during World War II The parabola is swached vertically by a factor of 5. Which is the better definition of line of best fit? resuelve la inecuacin (3x Imagine riding on a sled, or in a wagon, or perhaps a school bus that stops quickly or suddenly. What happens to your body if you are not expecting the sudden stop? 2/3 - 3/2y + 1/3y + 4 = 0 those in agriculture industry need to be particularly mindful of safety because why? 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 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. im timed pls hurry. What is the highest court in the state? the juvenile court the appeals court the supreme court the district court Identify the sections of the mid-oceanic ridge that have reversed polarity on the right side of the ridge.Normal magneticpolarityReversed magneticpolarityMid-ocean ridgeLithosphereMagma I cant do this please help me i will give brainliest Describe how each of Newtons laws may be observable during a car trip. Classify the pair of angles. Then find the value of x pls help meeeeeeeeeeeeee please help !! :))) Using the same information above, what percentage of flea collars would not be acceptable to ship according to this sample? A.32 out of 36 collars, or 89%B.4 out of 36 collars, or 11% What type of succession is depicted in figure 2? Justify your answer. An angle measures 62 less than the measure of its complementary angle. What is the measure of each angle? (i need two answers please help see the pic) f(x) = -x^(4)Identify the function as a translation, compression, stretch, or reflection