What should you never write on your own?
People spend their whole life doing this
What is A monte Carlo simulation, and what is the use of random numbers for it?
What is a simple linear congruential generator?
Is it truely random?
The u’s become more and more uniformly distributed over a large enough sample.
What is a mapping distribution and how does it allow use to generate a random distribution from a more complex distribution from a sequence of random variables that draw from the uniform distribution?
Generally what is computational complexity and what notation do we use?
What is the computation complexity of the following process?
How does this change between 0<-n<=1000 and larger values of n?
What are the two main types of computation complexity?
Time Complexity –> measures how the number of computational steps ( operations, comparisons, iterations) grwos with the size of the input n –> about speed and is expressed in Big-O notation.
What are the concepts “condition number” and “stability” that arise in numerical work?
How do we run into a “condition number” problem when solving a system of linear equations Ax=b when A is invertible but very close to being singular but is not?
what happens the κ(A) the gets large?
Every time you solve the problem, you will run into this issue (it is independent from the algorithm) –> you would have to reformulate (if you can) the problem to make it go away
How is the numerical solution to an ODE a problem with stability?