1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Free_Kalibri [48]
3 years ago
10

An arithmetic progression is a sequence of numbers in which the distance (or difference) between any two successive numbers if t

he same. This in the sequence 1, 3, 5, 7, ..., the distance is 2 while in the sequence 6, 12, 18, 24, ..., the distance is 6. Given the positive integer distance and the positive integer n, associate the variable sum with the sum of the elements of the arithmetic progression from 1 to n with distance distance. For example, if distance is 2 and n is 10, then sum would be associated with 25 because 1+3+5+7+9 = 25.
Mathematics
2 answers:
earnstyle [38]3 years ago
3 0

Answer:

Step-by-step explanation:

Solution:

- We are to write a program for evaluating the sum to Nth of an arithmetic sequence such that the sequence starts from positive integer 1, 3 , 5 , 7 , .. n.

- The sum to nth for the arithmetic series is given by two parameters i.e first integer a = 1 and the distance between successive integers d = 2 in our case.

- For any general distance d we can write our sum to nth as:

          Sum to nth = a + (a+d) + (a+2*d) + (a+3*d) .... (a + (n-1)*d)

- From above sequence we can see that every successive number is increased by distance d and added in previous answer.

- We will use an iteration loop for a variable "sum", which is cycled by a "range ( , , )" function.

- The parameters of the range functions corresponds to:

                   range ( first integer , last integer , step size )  

                   range ( a , n + 1 , d )

- Then we can cast the loop as follows:

 " int sum = 0

   int d = 2

   int a = 1

      for i in range ( a , n + 1 , d )

            sum += i

  "

- We see that iteration parameter i starts from a = 1, with step size d = 2 and the sum is previously stored sum value plus i for the current loop.

monitta3 years ago
3 0

Answer:

def arithmetic (n, dist):

           sum = 0

           for num in range(1, n + 1, dist):

                    sum += num

           print(sum)

arithmetic(10, 2)

Step-by-step explanation:

The question asked us to write a program given the positive integer n, and positive integer distance and then associate the variable sum with the sum of the elements of the arithmetic progression from 1 to n with distance.

using python the code can be written as:

def arithmetic (n, dist):

I wrote a function that accept 2 argument n the positive integer and the distance , dist.

sum = 0

The sum is equal to 0 at the beginning.

for num in range(1, n + 1, dist):

The code loop through the number in the range of 1 to the n value with a distance value.

sum += num

The looped value are then added to the sum value to get the sum.

print(sum)

The sum are printed

arithmetic(10, 2)

The function is called and filled with the required argument . In our case the positive integer n is inputted and the distance value.

You might be interested in
How can you use the distributive property to find 5x198
Zigmanuir [339]
Sent a picture of the solution to the problem (s). You can always break a number down to something you understand.

8 0
3 years ago
Ted likes to run long distances. He can run 20 km 95 minutes. He wants to know how many kilometers (k) he will go if he runs at
maxonik [38]

He will run 60km in 285 minutes.



8 0
3 years ago
Read 2 more answers
Jane wants to pick out an outfit for the school dance . She can choose from 3 pairs of pants 5 shirts and 2 pairs of shoes . How
Alina [70]

Answer:

30

Step-by-step explanation:

we multiply each number. There are 3 pairs of pants 5 shirts and 2 pairs of shoes, so we multiply 3x5x2 to get 30

She should pick out this outfit...

3 0
3 years ago
-1+19w=11w+23 answer
Greeley [361]

Answer:

w = 3

Step-by-step explanation:

19w - 1 = 11w + 23

19w - 11w = 23 + 1

8w = 24

w = 3

4 0
3 years ago
What kind of distribution is shown in the frequency table?
nirvana33 [79]

Answer:

Skewed to the right

Step-by-step explanation:

As we can see in the table, the first three intervals have smaller frequency and last 4 intervals have higher frequency values. When the class intervals and frequency will be plotted on graph while taking class intervals on x-axis and frequency at y-axis, the graph will be skewed to the right because of the larger frequency values in the last intervals..

8 0
3 years ago
Other questions:
  • What is the area, in square inches, of a four inch by 6 inch rectangle?
    12·2 answers
  • Which equation has a k-value of -12<br>A. y=-12x<br>B. y=12+12x<br>C. y=x-12<br>D. y=12x+1
    14·1 answer
  • 1/2/3 in simplest form
    12·1 answer
  • If ray BD bisects angle CBE, ray BC is transparent to ray BA, angle CBD = (3x + 25) degrees, and angle DBE = (7x - 19) degrees,
    11·2 answers
  • What is the standard deviation of the data set? 1, 4, 2, 2, 8, 7, 3 Round your answer to the nearest tenth.
    14·2 answers
  • What is 17/100 simplest form?
    6·2 answers
  • Explain why an individual with a compromised immune system may not be able to fight infection
    15·1 answer
  • Please help! they are so confusing, and i dont understand how to get the answer
    14·1 answer
  • PLEASE HELP
    8·1 answer
  • Solve for x if sqrt (3x-8) + 1 = sqrt (x+5)
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!