Recent content by DuncanM

  1. D

    Should I bother with this last chapter of my Linear Algebra text?

    When I was a student, I barely had time to eat, let alone explore beyond what was required of us. Before finals: I think it is best if you focus on just the material for which you are responsible. Anything that distracts you from that task may hurt your mark. After finals: Go ahead and learn...
  2. D

    Why is there no Aerospace Engineering Forum?

    I think many people consider Aerospace Engineering a specialized discipline of Mechanical Engineering, so most questions relating to aerospace are usually posted in the Mechanical Engineering forum. So far, there simply hasn't been enough activity/demand to justify creating a forum specifically...
  3. D

    Scientific Computing vs Applied Math at UMN

    I don`t know for sure, but off the top of my head, I think the Scientific Computing option would be the more generic of the two and, therefore offer the most job possibilities. I suppose it depends on location, and industry you want to be in. The first thing that comes to mind when I think of...
  4. D

    Comp Sci Store values in an arbitrarily sized matrix C++

    Since your problem, as-is, does not require you to save the numbers, I suppose your solution works okay. Glad to know you got it working. However, in most cases, the data is saved for additional work. In this case, a dynamic array would be used. One way of approaching this problem would be to...
  5. D

    Discrete Fourier Transform of Sine Function

    Here is some sample data. I wanted to have the points at t = T/4 and t = 3T/4 included, so the motion was divided into 20 uniform intervals. T = 1 time unit. k = 0 t = 0.0 sin(2*PI/20*t) = 0.0 k = 1 t = 0.05 sin(2*PI/20*t) = 0.309016994374947 k = 2 t = 0.1...
  6. D

    Discrete Fourier Transform of Sine Function

    (1) For a real function, g(x), the Fourier integral transform is defined by g(x) = \int_{0}^{\infty} A(\omega )cos(2\pi \omega x)d\omega - \int_{0}^{\infty} B(\omega )sin(2\pi \omega x)d\omega where A(\omega ) = 2 \int_{-\infty}^{\infty} g(x)cos(2\pi \omega x)dx and B(\omega ) = 2...
  7. D

    Linear algebra and applications to aerospace

    One application that comes to mind quickly is the analysis of aeroelasticity and flutter. By forming the appropriate matrix, and computing its eigenvalues and eigenvectors, you can determine the modes of vibration, and its frequencies. I suppose that would fall under the general rubric of...
  8. D

    Not sure where else to ask this -- Can I teach myself Diff Eqs?

    Yes, it is possible. In fact, as you may have noticed already, most university work is up to you anyhow. Sometimes you get a bad professor, sometimes you get a good professor, sometimes you get a professor who knows the material but can't teach, etc. Whatever, the situation, the onus is on you...
  9. D

    Is the Math/Science Taught at MIT, Caltech, etc. Harder?

    I think the courses taught at "elite" universities are a lot harder, especially if the school promotes itself as a "research" school. The difference between a college and a university is that a college typically does not offer graduate courses. Since the heads of professors tend to be in their...
  10. D

    Engineering Mechanical Engineeringmajor with math minor?

    If you really want to get into things electronic, perhaps one option would be to complete your Bachelor's Degree in Mechanical Engineering, and then find a way to do advanced degrees in Electrical Engineering. I recommend caution about switching fields halfway through your schooling, or picking...
  11. D

    A Large scale eigenvalue problem solver

    It would also be helpful if you could take advantage of any special properties of the array. For example, are the array entries real or complex? Is the array symmetric or Hermitian? Is the array sparse? etc etc. Several routines are written to make the most of these features and provide faster...
  12. D

    Which calculator purely for algebra solver (with quadratics, cubics)

    I am curious to see the equations you are solving. Can you post them here? On the 48GX, you can enter the value of x where you suspect a zero will be (see the attached image.) The arrows on the calculator can be used to move the cursor into this field, and then you can enter an initial guess...
  13. D

    Which calculator purely for algebra solver (with quadratics, cubics)

    I have the HP 48GX too; have had it for over twenty years and am very happy with it. In fact, it is possible to compute all roots of a polynomial in a single transaction. You use the SOLVE application. The polynomial coefficients are entered as a vector. You then click "SOLVE", and all the...
  14. D

    Solving High-Degree Polynomial Functions: A Scientific Approach

    There is a Master's Thesis (in PDF format) from Oxford University posted at the following link: http://eprints.maths.ox.ac.uk/16/1/mekwi.pdf I think it does a pretty good job providing a general overview (and easily readable) of the various iterative methods available for solving...
  15. D

    Advanced Engineering Maths: Is Erwin Kreysizg Enough?

    During my four years as an undergraduate engineering student, I took many math courses: Calculus (several levels), Linear Algebra, Topology, Complex Variables, Differential Equations, Partial Differential Equations, Numerical Analysis, and more, and each of those courses required a book itself...
Back
Top