Sequence: 49, 36, 25, 16, 8, 4, 1 * Is this a arithmetic or geometric sequence? and if it is arithmetic find the common difference and if it is geometric find the common ratio? and please do not give me a stupid answer only smart people answer this if you know the answer to this you are smart.

Answers

Answer 1

Answer:

Step-by-step explanation:

The sequence is nor properly written. This is correct sequence

49, 36, 25, 16, 9, 4, 1...

Merely looking at the sequence, we can see that it doesn't form an arithmetic sequence nor does it form a geometric sequence.

The values of the sequence are all perfect squares.

Rewriting the sequence;

7², 6², 5², 4², 3², 2², 1²...

Now we can see that the base values for an arithmetic sequence as shown:

7, 6, 5, 4, 3, 2, 1...

We find the common difference of this sequence as shown

d = T2-T1 = T3-T2 = T4-T3

Given T1 = 7, T2 = 6, T3 = 5, T4 = 4

Substitute

d = 6-7 = 5-6 = 4-5 = -1

d = -1

Get the nth term using the sequence

Tn = a+(n-1)d

a is the first term

d is the common difference

n is number of terms

Tn = 7+(n-1)(-1)

Tn = 7+(-n+1)

Tn = 7+1-n

Tn = 8-n

Since their power are constant i.e squared, hence we will square the ntj term as well to get the nth term of the original sequence as;

Tn = (8-n)²

To conclude, we can say that the sequence is neither arithmetic nor geometric sequence since the terms of the sequence are prefect squares.


Related Questions

Blood pressure: High blood pressure has been identified as a risk factor for heart attacks and strokes. The proportion of U.S. adults with high blood pressure is 0.4. A sample of 39 U.S. adults is chosen. Use the TI-84 Plus Calculator as needed. Round the answer to at least four decimal places. Part: 0 / 60 of 6 Parts Complete Part 1 of 6 Is it appropriate to use the normal approximation to find the probability that more than 43% of the people in the sample have high blood pressure? It ▼(Choose one) appropriate to use the normal curve, since =np ▼(Choose one)10 and =n−1p ▼(Choose one) 10.

Answers

Answer:

Yes it appropriate to use the normal approximation to find the probability that more than 43% of the people in the sample have high blood pressure

Step-by-step explanation:

From the question we are told that

The population proportion is  p=0.4

  The sample size is  n =  39

  The sample proportion is  [tex]\^ p = 0.43[/tex]

Generally for normal approximation to be used

       [tex]np > 10[/tex]

so np  =  39 * 0.4 =  15.6 > 10

   and [tex]n(1- p) > 10[/tex]

so   n(1-p ) = 39(1-0.4) = 23.4 >10

Given that the both condition is meet it mean that  it appropriate to use the normal approximation to find the probability that more than 43% of the people in the sample have high blood pressure

Read 3 integer numbers from the user; these numbers represent the lengths of 3 straight lines. From the 3 lengths, determine whether a triangle can be formed with the corresponding lines. If it is possible to form a triangle, determine whether the triangle is a right triangle or not. The rules to be used are: 1. To form a triangle where all lines’ ends meet (form vertices), the sum of the lengths of two sides must be greater than the length of the third side. This short video illustrates this concept: How to determine if the three sides make up a triangle. 2. Per the Pythagorean theorem: in a straight triangle, the square of the length of the longest side (the hypotenuse) is equal to the sum of the squares of the lengths of the other two sides. 3. The user can enter the lengths of each line in any order, i.e.: you may not assume that the first length is the longest or the smallest or the middle value.

Answers

Answer:

Written in Python

print("Enter three sides of a triangle: ")

length = []

for i in range(0,3):

    inp = int(input(""))

    length.append(inp)    

length.sort()

if length[1]+length[2] > length[0] and length[0] + length[2] > length[1] and length[0] + length[1] > length[2]:

    print("Triangle")

    if length[2]**2 == length[0]**2 + length[1] **2:

         print("Right Angled")

    else:

         print("Not Right Angled")

else:

    print("Not Triangle")

Step-by-step explanation:

This line prompts user for sides of triangle

print("Enter three sides of a triangle: ")

This line declares an empty list

length = []

The following iteration gets user input

for i in range(0,3):

    inp = int(input(""))

    length.append(inp)    

This line sorts user input

length.sort()

The following if condition checks if user input is triangle

if length[1]+length[2] > length[0] and length[0] + length[2] > length[1] and length[0] + length[1] > length[2]:

The following is executed is the if condition is true

    print("Triangle")

The following if condition checks if user input forms a right angled triangle

    if length[2]**2 == length[0]**2 + length[1] **2:

         print("Right Angled")

    else:

         print("Not Right Angled")

This is executed if user input is not a triangle

else:

    print("Not Triangle")

i will KISS U ON THE MOUTH IF U HURRY PLS HELP find the derivative dy/dx for y=(x^2+4x) / (x^3-5)

Answers

Use the quotient rule:

[tex]\dfrac{\mathrm dy}{\mathrm dx}=\dfrac{(x^3-5)\frac{\mathrm d(x^2+4x)}{\mathrm dx}-(x^2+4x)\frac{\mathrm d(x^3-5)}{\mathrm dx}}{(x^3-5)^2}[/tex]

[tex]\dfrac{\mathrm dy}{\mathrm dx}=\dfrac{(2x+4)(x^3-5)-3x^2(x^2-4x)}{(x^3-5)^2}[/tex]

[tex]\dfrac{\mathrm dy}{\mathrm dx}=-\dfrac{x^4 - 16 x^3 + 10 x + 20}{(x^3-5)^2}[/tex]

someone please help me from 6 to 9 please

Answers

Answer:

For 6.) y=-2x+1; 9.) y=-7/3x-5

Step-by-step explanation:

Slope intercept form is y=mx+b. m would be the slope (-2 and -7/3) and y is the y-int (1 and -5).

You are given $893 in one, five, and ten dollar bills. There are 165 bills. There are twice as many five dollar bills as there are ones and tens combined. How many bills of each type are there?

Answers

Given:

You are given $893 in one, five, and ten dollar bills.

There are 165 bills.

There are twice as many five dollar bills as there are ones and tens combined.

To find:

How many bills of each type are there?

Solution:

Consider the number of bills of one dollars, five dollars and ten dollars are x, y and z respectively.

According to the question,

Number of bills : [tex]x+y+z=165[/tex]         ...(1)

Total amount : [tex]1x+5y+10z=893[/tex]         ...(2)

Condition : [tex]y=2(x+z)[/tex]     ...(3)

Equation (3) can be written as

[tex]\dfrac{y}{2}=x+z[/tex]       ...(4)

Substituting [tex]x+z=\dfrac{y}{2}[/tex] in (1), we get

[tex]\dfrac{y}{2}+y=165[/tex]

[tex]\dfrac{3y}{2}=165[/tex]

[tex]3y=330[/tex]

[tex]y=110[/tex]

Substituting y=110 in (4), we get

[tex]x+z=\dfrac{165}{2}[/tex]

[tex]x+z=55[/tex]

[tex]x=55-z[/tex]       ...(5)

Substituting y=110 and x=55-z in (2), we get

[tex](55-z)+5(110)+10z=893[/tex]

[tex]55-z+550+10z=893[/tex]

[tex]9z+605=893[/tex]

[tex]9z=893-605[/tex]

[tex]9z=288[/tex]

Dividing both sides by 9, we get

[tex]z=32[/tex]

Substituting z=32 in (5), we get

[tex]x=55-32[/tex]

[tex]x=23[/tex]

Therefore,

One dollar bills = 23

Five dollars bills= 110

Ten dollars bills = 32

I need help with question 11 pleaseeeeeee

Answers

The base of the prism is a 3:4:5 right triangle.
One of the legs is its base and the other is its height. (The longest side is the hypotenuse!)

The area of the triangular base is bh/2 = (9)(12) / 2. There are two of these.
There are also three rectangular sides on the prism.
Their dimensions are 9 by 20, 12 by 20, and 15 by 20.

You can do the arithmetic from here.
And the answer is 828cm ^2

Answer:

828 cubic units

Step-by-step explanation:

What is |-24| + |13| =?

Answers

Answer:

37

Step-by-step explanation:

just add the two numbers like they are not negative.

Please help me with this!
I will give you a thanks!

Answers

-2 + 6
.................
-2+6 . Count the spaces . That’s what I used to do

2+2=4 because 2 fingers and then another 2 fingers

Answers

Answer:

yes

Step-by-step explanation:

Answer:

yes? That's right. ummmm lol

Which statement describes how to geometrically divide a complex number, z, by a second complex number, w?
O Scale z by the modulus of w, then rotate clockwise by the argument of w.
O Scale z by the modulus of w, then rotate counterclockwise by the argument of w.
O Scale z by the reciprocal of the modulus of w, then rotate clockwise by the argument of w.
O Scale z by the reciprocal of the modulus of w, then rotate counterclockwise by the argument of w.

Answers

Answer: C

Step-by-step explanation:

I just took the quiz and I got it right

Statement describes how to geometrically divide a complex number z by a second complex number w is Option (C) Scale z by the reciprocal of the modulus of w, then rotate clockwise by the argument of w.

What is Complex number?

In mathematics, a complex number is an element of a number system that contains the real numbers and a specific element denoted i, called the imaginary unit

What is Modulus of a complex number?

Modulus of the complex number is the distance of the point on the argand plane representing the complex number z from the origin

Given,

Complex number z divides by a second complex number w

To divide a complex number a complex number then multiply the conjugate with the numerator and the denominator of the complex fraction

From the given statements Scale of z by the reciprocal of the modulus of w, then rotate clockwise by the argument of w

Hence, Statement describes how to geometrically divide a complex number z by a second complex number w is Option (C) Scale z by the reciprocal of the modulus of w, then rotate clockwise by the argument of w.

Learn more about Complex number and Modulus of a complex number here

https://brainly.com/question/19554199

#SPJ2

Help ill give brainliest
Lily begins solving the equation 4(x – 1) – x = 3(x + 5) – 11. Her work is shown below.

4(x – 1) – x = 3(x + 5) – 11
4x – 4 – x = 3x + 15 – 11
3x – 4 = 3x + 4
How can her partial solution be interpreted?

A. The equation has one solution: x = 0.
B. The equation has one solution: x = 8.
C. The equation has no solution.
D. The equation has infinite solutions.

Answers

The equation has B. no solution

Answer:

C. no solution

Step-by-step explanation:

3x – 4 = 3x + 4

3x-3x=4+4

0=8

which is not possible.

So, it has no solutions.

Sharee and her two sisters ate 3 5 of a pizza. How much of the pizza did each girl have? A) 1 3 B) 1 5 C) 2 15 D) 3 10

Answers

Sharee and her two sisters ate 3 /5 of a pizza. How much of the pizza did each girl have? A) 1 /3 B) 1/ 5 C) 2 /15 D) 3 /10

Answer:

B) 1/ 5

Step-by-step explanation:

Number of persons = Sharee and her two sisters = 3 persons

Quantity of pizza eaten = 3/5

Each person ate:

3 persons = 3/5 pizza

1 person = x pizza

Cross Multiply

3 × x = 3/5 × 1

x = 3/5 × 1/3

x = 3/5 ÷ 3

x = 3/5 × 1/3

x = 1/5

Hence, each person ate 1/5 pizza.

what is 8 times 0.9 equal

Answers

Answer:

7.2

Step-by-step explanation:

Sharon went bowling with her friends. She paid $3 to rent
her shoes and then $3.75 for each game (x) of bowling. She
spent a total of $18. How many games did she bowl?
WRITE YOUR EQUATION:
SOLVE:
SOLUTION:

Answers

Answer:

3 + 3.75x=18

subtract 3 from both sides

3.75x=15

divide by 3.75 on both sides

x=4

Step-by-step explanation:

4x+2 = 2(2x+1) what is the answer?

Answers

Answer: 0=0

Step-by-step explanation: Simplify

PLEASE HELP!!! Chloe is working two summer jobs, landscaping and clearing tables. She must work no less than 12 hours altogether between both jobs in a given week. Write an inequality that would represent the possible values for the number of hours landscaping, l and the number of hours clearing tables, c, that Chloe can work in a given week.

Answers

Answer:

got u homie

Step-by-step explanation:

Answer:

l +c _> 12

Step-by-step explanation:

Help me with this question pleasee

Answers

Answer:

√23 = a

Step-by-step explanation:

/ab/²= /ac/²+/bc/² (Pythagoras theorem)

12² = a² +11²

144 = a² + 121

144 - 121 = a²

23 = a²

√23 = a

Whatbis the slope of a line that is perpendicular to the line y= 2x-6? A. -2
B. 2 C. 1/6 D. -1/2

Answers

Answer:

D. -1/2

Step-by-step explanation:

When a line is perpendicular to another line the slope will be the exact opposite. For example line A = y = 3x + 5 the line perpendicular to it will be -1/3x.

So -1/2 is the slope of your perpendicular line.

Perform the indicated operation

3/4 divided by 1/3

Answers

Answer:

2 1/4

Step-by-step explanation:

3/4 ÷ 1/3 = ?

(to divide fractions faster you flip the second fraction so:)

3/4 x 3/1 = 2 1/4

To determine whether price has an impact on sales of specialty coffees, the managers kept track of how many pounds of each variety of coffee were sold last month.

PRICE PER POUND POUNDS SOLD
Mean $8.75 4.50 lb
Standard Deviation $3.63 18.33 lb
Correlation r -.927

a. The response variable is__________ and the explanatory variable is_________
b. Based on the statistics shown above, the slope of the estimated regression line that relates the response variable to the predictor variable is:______

i. 0.846.
ii. -4.681
ii. -0.858.
iv. 45.459
v. -8.999.

Answers

Answer:

A. Response Variable is POUND SOLD Explanatory variable is PRICE PER POUND

B. ii. -4.681

Step-by-step explanation:

A. Based on the statistics that was shown in the given information above the:

Response Variable is POUND SOLD Explanatory variable is PRICE PER POUND

B. Calculation to determine slope of the estimated regression line that relates the response variable to the predictor variable

Using this formula

Slope =r*Sy/Sx

Let plug in the formula

Slope=-0.927*18.33/3.63

Slope=-16.99191/3.63

Slope=-4.681

Therefore , the slope of the estimated regression line that relates the response variable to the predictor variable is: -4.681

w(t) = 3t – 1; t = 5

Answers

I’m not sure if your asking for the solution, but Hope this helps!

A square is removed from the right hand corner

Answers

Answer:

C im pretty sure

Step-by-step explanation:

Because the square taken out has a 4x4 area which is 16 and the area of the whole square used to be 14x14 which is 196 and if u subtract 16 from that you get 180

please help I will give a lot of points


btw its 2 questions​

Answers

ummmmmmm.. wait ima come back to it let me work it it

Answer:

please wait two mins I will give you the answer, but which question 2 or 3

The Tigers’ first play when they had possession of the ball went for -3 yards. Did the Tigers gain or lose yards on that play? How many yards did they gain or lose?

Answers

Hi I’m Abbi, pls brainiest me! The answer is loose yards and -3 hope this helps :)

Answer:

вы молодец и увас всё получилось

Need help i will mark you brainliest

Answers

They are congruent b/c they the sides of the two shapes are equal as well as the angles. Hope that helps !

A marathon runner travels 9/2 miles in 1/2 hour what is the unit rate

Answers

Answer:

9/2:1/2

Step-by-step explanation:Here's the answer

The living room of Ann's house is a square with an area of 121 square feet. What is the length of each side of the foyer

Answers

Answer:

30.25

Step-by-step explanation:

121 divided by 4 is 30.25

The scatterplot and trend line show a positive correlation between advertising costs and sales.
Which two points can be used to find the slope of the trend line?

Point 1: ?
Point 2: ?

Answers

Answer:

Point 1: (6.4, 117)

Point 2: (6.6, 120)

Step-by-step explanation:

Answer:

Point 1: (6.4, 117)

Point 2: (6.6, 120)

Step-by-step explanation:

I need help with this one

Answers

Answer:

The first three

Step-by-step explanation:

A school has 726 students. There are 340 boys. About what percent of the students are girls?

Answers

Answer: 348 girls so somewhere around 80 percent

Step-by-step explanation:

Other Questions
which is the farthest away from sea level,-3, -2, -0.8, 1/10, 1/2, 0.8, 7 which of the following terms are you familiar1.ikat technique2.batik3.sihn4.simpur5.uneven twill6.Golden thread silk in which two steps of cellular respiration is the co2 produced A scientist observes and counts 155 bacteria in a culture. Later, the scientist counts again and finds the number has increased by 40%. pls help . ily ppl are so nice A bomb calorimeter with a heat capacity of 837 JC contains 745 g of water. It burns 2.50 g C8H18 resulting in the temperature going from 15.0C to 33.8C. What is the value of the heat transferred (in kilojoules) by the reaction from the perspective of the system? David's car could cover one lap of the Indy 500 in about 90 seconds. Chris' car could cover one lap in about 54 seconds. If both cars left the same starting point at the same time, after how many seconds would they meet again at the starting point? he BEST strategy for improving flexibility throughout the body is to __________.A.perform different stretching exercises targeting multiple areasB. perform the same exercise over and over until target flexibility is reachedC. perform stretching exercises in between each strength-building exerciseD. perform a set routine of exercises, targeting only one area of the bodyHELP FAST!!!!! WILL GIVE BRAINLY What is the inverse of the function g(x)=5(x-2) Every day you collect 8 pennies and keep them in a jar. The first day you have 8, the second day you have 16, etc. How many pennies do you have on the 113th day? 11.) The table shows four account transactions. Find the account balance after all theaccount transactions if the account started at zero.deposit $35deposit$25withdrawal -$50withdrawal -$25 What types of environmental legislation have been passed in recent years Ben makes five paper helicopters with different wing lengths. He drops them the same way from a height of two meters for five trials each. He records the amount of time it takes for each helicopter to fall to the ground. What is the independent variable? Who can vote in Saudi Arabia? who do they vote for? How was the cane toad introduced in Australia Heather clearsa rectangular region in her yard for agarden. If the length is a one-digit wholenumber and the width is 5.5 meters, whatis the least possible area? What is thegreatest possible area? Explain how youfound your answers. iroquois confederacy If S = 2(lw + lh + wh) and l = 5w, rewrite the equation for S, substituting in 5w for l. I WILL MARK BRAINLIEST!Read the excerpt from Broken Chain.Come on, man, let me use it, Alfonso pleaded. Please, Ernie, Ill do anything.Although Ernie could see Alfonsos desperation, he had plans with his friend Raymundo. They were going to catch frogs at the Mayfair canal. He felt sorry for his brother and gave him a stick of gum to make him feel better, but there was nothing he could do. The canal was three miles away, and the frogs were waiting.Which message does Gary Soto want readers to take away?Small gifts have great influence.Achieving one's goals is unrealistic.Friendship is something that everyone should value.People place their own needs above those of others. Which of these techniques involves an intense use of chiaroscuro?TenebrosoInterverted perspective Distortion Symbolism