How to use C++ in studying calculus

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 5K views
sherlin
Messages
1
Reaction score
0
How to use C++ in studying calculus
I'm having a hard time.
 
Last edited by a moderator:
Physics news on Phys.org
I sympathize, but can't help with a sensible (and somewhat concrete) answer unless you provide some more context. What specifically makes it hard ? The calculus, the c++ language, anything else ... ?
What have you done/seen/learnt so far ?
 
Program the ti-84 to learn calculus
 
Rosetta Code has a numerical integration topic implemented in several languages for selected functions:

https://rosettacode.org/wiki/Numerical_integration

If you are instead trying to learn Calculus and want to use programming to verify your answers (not a good idea - as you'll be spinning your wheels and getting frustrated trying to understand why your answer isn't what the teacher gets exactly - and it won't help on tests or quizzes).

You could consider using MATLAB (popular in college with engineers) or Mathematica:

https://rosettacode.org/wiki/Numerical_integration#MATLAB_.2F_Octave

https://rosettacode.org/wiki/Numerical_integration#Mathematica

Other languages I forgot to mention are Julia (MAtlab like) and Python. Both of which have examples for numerical integration:

https://rosettacode.org/wiki/Numerical_integration#Julia

https://rosettacode.org/wiki/Numerical_integration#Python
 
Last edited:
  • Like
Likes   Reactions: QuantumQuest
While you can use C++ for any problem that is or can get computable, you will definitely need some good skills in C++ first. In the past when in college, I was using C extensively for computations in various fields of math. It was an excellent exercise for becoming a better programmer. You can also do this in C++ - provided that you use the available well written and tested libraries that exist, but it will be tricky enough when it comes to difficult concepts / computations. I would recommend to try to do your best - it will take time and efforts, but meanwhile, as pointed out by jedishrfu, you can use some numerical computing environment like Matlab or Mathematica - there is other such software as well, in order to learn the math concepts without inaccurate approximations or other errors.
 
  • Like
Likes   Reactions: jedishrfu
For simple experiments in calculous (changing parameters, seeing graphs of the functions, integrals, and derivatives), you might want to look at the free GeoGebra software package.
 
  • Like
Likes   Reactions: QuantumQuest and jedishrfu