Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started