Commit bb13861c authored by ANMOL MISHRA's avatar ANMOL MISHRA

Lab1 Files

parents
39 | Mavericks
(Anmol Mishra, 150010041) (Rishabh Garg, 150050012) (Varshith Sreeramdass, 150050084)
Anmol: 100% Rishabh: 100% Varshtih: 100%
Task A1 and A2:
The functions main_task_a1() and main_task_a2() solve the physical equations using fsolve and output the answers in appropriate text files.
The functions solve() and solve1() implement the actual equations to be solved.
Citations:
Solving: https://www.gnu.org/software/octave/doc/v4.0.0/Solvers.html
File I/O: https://www.gnu.org/software/octave/doc/v4.0.1/Opening-and-Closing-Files.html#Opening-and-Closing-Files
Octave Manual
This was our first foray into scientific computing and it was an enlightening experience, at least from a programming point.
We learnt about the limitations of using computers for doing our numerical dirty work, which was that they're not particularly good at doing accurate numerical calculations. (precison V accuracy)
->The square root function, for example, was a particularly imprecise function. We tried to use it in task A1 to simplify some equations (Precisely, the number of equations. Solving one equation, instead of two, should give us better answers right? Wrong.) but the loss in precision was too vast to be acceptable.
->The floating point inaccuracy was also quite prevalent, especially when we used { det(A)*inv(A) } to find the adjoint of A.
The value of ((2/7)*7) evaluated to 1.99999...
->The solution to the equations varied vastly depending on the starting values of the functions in the 'fsolve' method.
So, given these problems which we encountered in our assignment, we feel that scientific computing does help us solve difficult equations easily. Due to the inherent lack of rationality in computers, we can't blindly use computers to replace the tried and tested method of solving equations by hand just yet.
Numerical computing helps in improving the precision of some estimate of the final answer, but not always a reasonable answer. That is to say, the value obtained might be mathematically correct and precise, but wont make any sense.
We pledge on our honour that we have not received any unauthorised assistance on this assignment or any previous task.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment