Question: Write a computer program that: Determine whether an input sequence (at least five consecutive terms) is geometric, arithmetic, or others sequences if it is geometric

Write a computer program that:
Determine whether an input sequence (at least five consecutive terms) is geometric, arithmetic, or others sequences
if it is geometric or arithmetic sequence find the sum of the first 20 terms (s20)
if it is geometric or arithmetic sequence find the value of term 15(a15)
if others sequences print it is neither geometric nor arithmetic
example of the run:
input: 3,6,12,24,48,96
output:
it is geometric sequence
s20=3145725
a15=49152
(Writing the code in Python language)
1. Determine whether an input sequence (at least five consecutive terms) is geometric, arithmetic, or others sequences
2. if it is geometric or arithmetic sequence find the sum of the first 20 terms (s20)
3. if it is geometric or arithmetic sequence find the value of term 15(a15)
4. if others sequences print it is neither geometric nor arithmetic

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!