How Can I Perform a Double Integration of a Function with Given Data Sets?

  • Thread starter Thread starter anirban84
  • Start date Start date
  • Tags Tags
    Integration
Click For Summary
SUMMARY

The discussion focuses on performing double integration of a function using given datasets for variables x and y, defined over specific limits t1 and t2. The user seeks assistance with the integration process, particularly utilizing the Runge-Kutta method for solving differential equations. The method requires initial conditions, such as position and velocity, to accurately predict subsequent states. Feedback loops are suggested to enhance the accuracy of initial predictions during the integration process.

PREREQUISITES
  • Understanding of double integration in calculus
  • Familiarity with the Runge-Kutta method for numerical solutions
  • Knowledge of initial conditions in differential equations
  • Basic concepts of feedback loops in numerical methods
NEXT STEPS
  • Research the implementation of double integration in Python using NumPy
  • Learn about the adaptive Runge-Kutta methods for improved accuracy
  • Explore numerical integration techniques in MATLAB
  • Study the role of feedback loops in iterative numerical methods
USEFUL FOR

Mathematicians, engineers, and data scientists involved in numerical analysis, particularly those working with differential equations and integration techniques.

anirban84
Messages
1
Reaction score
0
I need to do a double integration of the form

int{ int{ f(x(t1),y(t2)) dt1 dt2 } } limit over t1 {0 : pa} and over t2 {o:pb}.

Now i have a data set for x for equal spaced t1 values varing from 0 to pa .
and for y for equal spaced t2 values varing from 0 to pb.

I will be very happy if anyone could help me ?
 
Technology news on Phys.org
There may be better methods but the only way I solved differential equations with software was via the Runge-Kutta method:

http://en.wikipedia.org/wiki/Runge-Kutta

The issue here is you need an initial state, for example for ballistics, you'd need the initial position and velocity. These would be used to calcuate accelerations, and the Runge Kutta method would be used to predict a new position and velocity after a very small period of time had passed. This process is repeated until the path is "completed".

For the first few steps, some type of feedback loop is needed to make the initial predictions more accurate.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
3K
Replies
7
Views
3K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 19 ·
Replies
19
Views
3K
  • · Replies 5 ·
Replies
5
Views
3K
Replies
10
Views
2K
  • · Replies 14 ·
Replies
14
Views
4K
Replies
63
Views
6K
  • · Replies 1 ·
Replies
1
Views
2K