repiy me as possible as u can.
in Pre-Algebra Answers by

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.

1 Answer

For a definite integration, a high and low limit for the integration need to be specified. No such information has been provided, so I'm assuming an indefinite integration.

There are various methods. A common one is the reduction method (see later). However, this method leads to having to perform multiple integrations, whittling down the exponent n by 2 each time.

METHOD 1 (for odd n)
∫cosn(t)dt can be split thus: ∫(cosn-1(t))(cos(t))dt. When n is odd it can be expressed as 2m+1, where m is an integer. n-1=2m so we have ∫cos2m(t)cos(t)dt.
cos2(t)=1-sin2(t) so the integral becomes  ∫(1-sin2(t))mcos(t)dt.
Let x=sin(t), dx=cos(t)dt and we get  ∫(1-x2)mdx.
(1-x2)m can be expanded (binomial theorem): 1-mx2+m(m-1)x4/2!-m(m-1)(m-2)x6/3!+...-x2m and then integrated:
x-mx3/3+m(m-1)x5/(5(2!))-m(m-1)(m-2)x7/(7(3!))+...+(-1)rC(m,r)x2r+1/(2r+1)+..., where C(...,...) is the combination function C(m,r)=m!/(r!(m-r)!) for 0≤r≤m.
The coefficients can also be calculated using Pascal's Triangle:
1 1 which is C(1,0) C(1,1) for m=1
1 2 1 which is C(2,0) C(2,1) C(2,2) for m=2
1 3 3 1 which is C(3,0) C(3,1) C(3,2) C(3,3) for m=3
1 4 6 4 1 which is C(4,0) C(4,1) C(4,2) C(4,3) C(4,4) for m=4
1 5 10 10 5 1 which is C(5,0) C(5,1) C(5,2) C(5,3) C(5,4) C(5,5) for m=5
1 6 15 20 15 6 1  which is C(6,0) C(6,1) C(6,2) C(6,3) C(6,4) C(6,5) C(6,6) for m=6
...
Each row apart from the first is created from the previous row by simply adding adjacent numbers and writing the sum as the coefficient in the new row. Each row starts and ends with 1.
For example, to get from 1 3 3 1 to 1 4 6 4 1, 1+3=4, 3+3=6, 3+1=4.
The general term in the expansion is (-1)rC(m,r)x2r+1/(2r+1) for 0≤r≤m. For example, if m=4:
(-1)0C(4,0)x/1=x; (-1)1C(4,1)x3/3=-4x3/3; (-1)2C(4,2)x5/5=6x5/5; (-1)3C(4,3)x7/7=-4x7/7; (-1)4C(4,4)x9/9=x9/9.
x is replaced by sin(t) to produce the general term (-1)rC(m,r)sin2r+1(t)/(2r+1) for 0≤r≤m. The constant of integration C needs to be added to the result.

METHOD 2 (reduction)
Let In=∫cosn(t)dt.

Let u=cosn-1(t), du=-(n-1)sin(t)cosn-2(t); dv=cos(t)dt, v=sin(t).

In=uv-∫vdu=sin(t)cosn-1(t)+(n-1)∫sin2(t)cosn-2(t)dt,

In=sin(t)cosn-1(t)+(n-1)∫(1-cos2(t))cosn-2(t)dt,

In=sin(t)cosn-1(t)+(n-1)∫(cosn-2(t)-cosn(t))dt,

In=sin(t)cosn-1(t)+(n-1)∫cosn-2(t)dt-(n-1)In,

In+(n-1)In=sin(t)cosn-1(t)+(n-1)∫cosn-2(t)dt,

nIn=sin(t)cosn-1(t)+(n-1)∫cosn-2(t)dt, which can be written:

nIn=sin(t)cosn-1(t)+(n-1)In-2, so In=(sin(t)cosn-1(t)+(n-1)In-2)/n.

By repeatedly applying this eventually we arrive at In-2p=∫dt (n even) or ∫cos(t)dt (n odd), that is, I0=t or I1=sin(t). The constant of integration C can then be added.

The Reduction Method is probably best applied by starting at I0 (even n) or I1 (odd n) and working upward to In because it provides an already evaluated integral from which the next I2, I3, etc., can be calculated.

METHOD 3 (even n=2m, multiple angle result)

∫cosn(t)dt=∫(cos2(t))mdt=∫[(1+cos(2t))/2]mdt=(1/2m)∫(1+cos(2t))mdt.

(1+cos(2t))m=∑C(m,r)cosr(2t) (see Method 1).

For example, if n=6, m=3:

∫cos6(t)dt=∫(cos2(t))3dt=∫[(1+cos(2t))/2]3dt=(1/23)∫(1+cos(2t))3dt.

(1+cos(2t))3=1+3cos(2t)+3cos2(2t)+cos3(2t).

∫cos6(t)dt=∫(1+3cos(2t)+3cos2(2t)+cos3(2t))dt,

∫cos6(t)dt=t+3sin(2t)/2+3∫cos2(2t)dt+∫cos3(2t))dt.

∫cos2(2t)dt=½∫(1+cos(4t))dt=½(t+¼sin(4t)).

∫cos3(2t))dt=∫(1-sin2(2t))cos(2t)dt.

Let x=sin(2t), dx=2cos(2t)dt, cos(2t)dt=dx/2.

∫(1-sin2(2t))cos(2t)dt=½∫(1-x2)dx=½(x-x3/3)=½sin(2t)(1-⅓sin2(2t)).

Putting all these together:

∫cos6(t)dt=t+3sin(2t)/2+(3/2)(t+¼sin(4t))+½sin(2t)(1-⅓sin2(2t)).

∫cos6(t)dt=5t/2+2sin(2t)+⅜sin(4t)-⅙sin3(2t)+C.

Method 3 uses some of the techniques used in Method 1. As n increases and remains even the process becomes more lengthy but manageable.

These methods yield the same solution for the same problem, even though the final results may look entirely different.

by Top Rated User (1.1m points)

Related questions

1 answer
asked Sep 14, 2015 in Calculus Answers by masoya n marthinus | 404 views
1 answer
1 answer
asked Sep 21, 2018 in Other Math Topics by MFATUZO | 868 views
1 answer
1 answer
asked Sep 21, 2018 in Other Math Topics by MFATUZO | 257 views
1 answer
asked May 2, 2013 in Calculus Answers by anonymous | 1.1k views
0 answers
1 answer
asked Oct 31, 2011 in Calculus Answers by anonymous | 819 views
Welcome to MathHomeworkAnswers.org, where students, teachers and math enthusiasts can ask and answer any math question. Get help and answers to any math problem including algebra, trigonometry, geometry, calculus, trigonometry, fractions, solving expression, simplifying expressions and more. Get answers to math questions. Help is always 100% free!

Most popular tags

algebra problems solving equations word problems calculating percentages math problem geometry problems calculus problems math fraction problems trigonometry problems rounding numbers simplifying expressions solve for x order of operations probability algebra pre algebra problems word problem evaluate the expression slope intercept form statistics problems factoring polynomials solving inequalities 6th grade math how to find y intercept equation of a line sequences and series algebra 2 problems logarithmic equations solving systems of equations by substitution dividing fractions greatest common factor square roots geometric shapes graphing linear equations long division solving systems of equations least to greatest dividing decimals substitution method proving trigonometric identities least common multiple factoring polynomials ratio and proportion trig identity precalculus problems standard form of an equation solving equations with fractions http: mathhomeworkanswers.org ask# function of x calculus slope of a line through 2 points algebraic expressions solving equations with variables on both sides college algebra domain of a function solving systems of equations by elimination differential equation algebra word problems distributive property solving quadratic equations perimeter of a rectangle trinomial factoring factors of a number fraction word problems slope of a line limit of a function greater than or less than geometry division fractions how to find x intercept differentiation exponents 8th grade math simplifying fractions geometry 10th grade equivalent fractions inverse function area of a triangle elimination method story problems standard deviation integral ratios simplify systems of equations containing three variables width of a rectangle percentages area of a circle circumference of a circle place value solving triangles parallel lines mathematical proofs solving linear equations 5th grade math mixed numbers to improper fractions scientific notation problems quadratic functions number of sides of a polygon length of a rectangle statistics zeros of a function prime factorization percents algebra 1 evaluating functions derivative of a function equation area of a rectangle lowest common denominator solving systems of equations by graphing integers algebra 2 diameter of a circle dividing polynomials vertex of a parabola calculus problem perpendicular lines combining like terms complex numbers geometry word problems converting fractions to decimals finding the nth term range of a function 4th grade math greatest to least ordered pairs functions radius of a circle least common denominator slope unit conversion solve for y calculators solving radical equations calculate distance between two points area word problems equation of a tangent line multiplying fractions chemistry binomial expansion place values absolute value round to the nearest tenth common denominator sets set builder notation please help me to answer this step by step significant figures simplifying radicals arithmetic sequences median age problem trigonometry graphing derivatives number patterns adding fractions radicals midpoint of a line roots of polynomials product of two consecutive numbers limits decimals compound interest please help pre-algebra problems divisibility rules graphing functions subtracting fractions angles numbers discrete mathematics volume of a cylinder simultaneous equations integration probability of an event comparing decimals factor by grouping vectors percentage expanded forms rational irrational numbers improper fractions to mixed numbers algebra1 matrices logarithms how to complete the square mean statistics problem analytic geometry geometry problem rounding decimals 5th grade math problems solving equations with variables solving quadratic equations by completing the square simplifying trigonometric equation using identities
87,446 questions
99,048 answers
2,422 comments
4,780 users