Help with Fortran: Calculate Cos(x) from Equation

Click For Summary
SUMMARY

The forum discussion focuses on creating a Fortran program to calculate the cosine of an angle using a Taylor series expansion. The program must read an angle in degrees, convert it to radians, and compute the cosine using the formula: cos(x) = 1 - x^2/2! + x^4/4! - x^6/6! + x^8/8! + ... The convergence criterion is set to 10^(-5) based on the absolute error between successive iterations. Key issues discussed include the correct calculation of factorials and the handling of numerical precision with the Fortran REAL data type.

PREREQUISITES
  • Fortran programming language
  • Understanding of Taylor series expansions
  • Knowledge of numerical precision and data types in Fortran
  • Familiarity with control structures in programming (loops, conditionals)
NEXT STEPS
  • Learn about Fortran DOUBLE PRECISION data types for handling larger factorials
  • Research Taylor series convergence criteria and error analysis
  • Explore advanced techniques for calculating factorials in Fortran
  • Investigate the use of IOSTAT in Fortran for error handling in input operations
USEFUL FOR

Fortran developers, students learning numerical methods, and anyone interested in implementing mathematical algorithms in programming.

NicolasPan
Messages
21
Reaction score
2
Hello I was assigned the following problem:Make a Fortran program which will be able to read a degree[0-360] checking validity range(not type) and it will be able to calculate and print the cos(x) from the following equation:
cos(x)=1-x^2/2! + x^4/4!-x^6/6!+x^8/8!-...,where x is in radiants.As a convergence criteria assume 10^(-5) using the absolute error between two successive repeats(I suppose it means do's).For the calculation of the ! the greatest possible kind of integer should be used.Finally the total number of repeats should be printed on screen.I have been trying really hard to make it run properly but I still have some questions,which I would be greatful would you be able to answer them.1)How can I measure the diffrence of two succesive repeats?
2)The command iostat will work only for the read it corresponds?
Fortran:
program askhsh6_ergasia2
implicit none
integer(kind=4)::i,fact,fact2
real,parameter::pi=3.14159265
real::degree,radiants,cosradiants,s
print*,'This program reads and calculates an angle`s co-sinus'
print*,'Please input the degrees of the angle'
read*,degree
do while(degree<0 .or. degree>360)
read*,degree
  print*,'Error input degree'
  cycle
  end do
  radiants=(degree*pi/180)
  fact=1
  fact2=1
  s=0
do i=2,100,2
      fact=fact*i
      fact2=fact2*(i+2)
      cosradiants=(-(radiants)**i/fact)+(((radiants)**(i+2))/fact2)
  s=s+cosradiants

end do
  print*,s+1.

end program
 
Last edited by a moderator:
Physics news on Phys.org
Your factorials are jumping over some numbers. Also, these numbers will get fairly large, so you may have some numerical problems.

For convergence, you should probably test if cosradiants lt 10^-5 and break out of the loop if true.
 
NicolasPan said:
1)How can I measure the diffrence of two succesive repeats?
Fortran:
cosradiants = 0
do i=2,100,2
      fact=fact*i
      fact2=fact2*(i+2)
      oldcosradiants = cosradiants
      cosradiants=(-(radiants)**i/fact)+(((radiants)**(i+2))/fact2)
      difference = cosradiants - oldcosradiants
      s=s+cosradiants
end do
2)The command iostat will work only for the read it corresponds?
You mean you want to do something like this:
Fortran:
READ(*,*,IOSTAT=io) x
Then the value of io corresponds to x, each read will generate a new IOSTAT for that read that you will have to give to some variable.

Hope this helps.edit: of course you need to check your original code, as Khashishi mentioned, your factorials are wrong.
 
Last edited by a moderator:
No, you don't need to calculate the difference in cosradiants. cosradiants is already the difference between pairwise terms in the series, since you are adding them all together into s.
 
A four-byte Fortran REAL data type has a max. magnitude of about 10-38 to 1038. This means that only about 33! can be represented in single-precision REAL data types. If you want to go higher than 33!, you'll need to use a DOUBLE PRECISION data type.
 
Hello everyone ! Thank you very much for your help I really appreciate that! Could you please explain why my factorials are wrong? It's strange since I get correct answers only for some degrees e.x 45 and wrong for many others such as 90 degrees.Thanks in advance
 
You are skipping many numbers since your loop counts by 2. Also, you are using integer*4 which is much too small to store factorials larger than 12! or so. You should probably use real*8.
 
NicolasPan said:
Hello everyone ! Thank you very much for your help I really appreciate that! Could you please explain why my factorials are wrong? It's strange since I get correct answers only for some degrees e.x 45 and wrong for many others such as 90 degrees.Thanks in advance
Even though you're using 2!, 4!, 6!, 8!, etc. 8! is still 1×2×3×4×5×6×7×8, so you can't skip over numbers in calculating the correct value of the factorial.

8! ≠ 6! × 8

8! = 6! × 7 × 8
 

Similar threads

Replies
4
Views
3K
  • · Replies 12 ·
Replies
12
Views
4K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 6 ·
Replies
6
Views
5K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
6K
  • · Replies 4 ·
Replies
4
Views
2K