

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Python program to find the sum of sine series
Let us consider that we have a value x and we have to calculate the sum of sine(x) series. In a sine(x) series, there are multiple terms such that,
sine(x) = x− x^3/fact(3) + x^5/fact(5) −x^7/fact(7)....
In order to solve the particular series-based problem, we will first take the degree as the input and convert it into radian. To find out the sum of the total number of terms in this series, we will first iterate over all the given terms and find out the sum by operations.
Approach to solve this Problem
Take input of Limit and degree.
Iterate over the terms and find out the sum by using the power function.
Print the output.
Example
n = 5 deg = 10 deg = deg*3.14/180 p=1 f=1 s=deg sine=−1 for i in range(3,n+1,2): deg = deg*sine p = pow(deg,i) f = f*i*(i−1) s = s+p/f print("The sum of the series of sine(10) is:", s)
Output
Running the above code snippet will generate the output as,
The sum of the series of sine(10) is: 0.17356104142876477
- Related Questions & Answers
- 8085 program to find the sum of a series
- C program to find the sum of arithmetic progression series
- 8085 program to find the sum of series of even numbers
- Program to find sum of harmonic series in C++
- Python Program to find the sum of array
- Program to find sum of the sum of all contiguous sublists in Python
- Find the sum of array in Python Program
- Python Program to Find the Fibonacci Series Using Recursion
- 8086 program to find sum of Even numbers in a given series
- 8086 program to find sum of odd numbers in a given series
- Java Program to Find Even Sum of Fibonacci Series till number N
- C++ Program to find the sum of the series 23+ 45+ 75+….. upto N terms
- Program to find the maximum sum of circular sublist in Python
- Program to find the sum of largest K sublist in Python
- Python program to find sum of elements in list
Advertisements