Python Can Python handle numeric integration with exponential functions?

AI Thread Summary
The discussion revolves around writing a Python program to numerically evaluate the function y(t) = exp(Integrate[A(x), x]) from 0 to t. The user initially attempted to use the quad function from scipy.integrate but found it inadequate for this specific form. Clarification was sought on the expression, confirming that the goal is to compute y(t) = exp(∫_0^t A(x) dx) for a specific function A(x). It was noted that while quad can evaluate integrals, it does so for one value of t at a time. A solution was proposed, demonstrating how to define a function that utilizes quad within another function to compute y(t) effectively. The example provided illustrates how to define both the integrand and the function y(t), allowing for numerical evaluation across different values of t.
sola maths
Messages
8
Reaction score
0
I'm trying to write a python program that is able to numerically execute functions of the form:

y(t) = exp(Integrate[A(x),x]) within the bounds of 0 and t

I tried using quad from scipy.integrate but it seems not to be able to evaluate expressions of this form.

Any other suggestions on appropriate packages or commands?
 
Technology news on Phys.org
sola maths said:
I'm trying to write a python program that is able to numerically execute functions of the form:

y(t) = exp(Integrate[A(x),x]) within the bounds of 0 and t

I tried using quad from scipy.integrate but it seems not to be able to evaluate expressions of this form.

Any other suggestions on appropriate packages or commands?

Can you be a bit more specific sola maths? Do you mean:

y(t) = \exp(\int_0^t A(x) \, dx)

You have some specific function A(x) that you can evaluate numerically?

Also, is that just you integrand? Do you need to evaluate,

\int_a^b \, e^{\int_0^t A(x) \, dx} \, dt
 
Hi uart,

Yes, I have some function A(x) that I need to evaluate numerically as x changes. The first expression you wrote is what I meant.
 
sola maths said:
Hi uart,

Yes, I have some function A(x) that I need to evaluate numerically as x changes. The first expression you wrote is what I meant.

Ok so it's just y(t) = \exp(\int_0^t A(x) \, dx) that you need to evaluate.

Quad can do this easily, but only for one particular value of "t" at a time. However you could call it (quad) from within a function if you wished to properly make a function of "t". For example,

Code:
def functA(x):
     return x*x/2.0

def functY(t):
     return exp(integrate.quad(functA,0,t)[0])

functY(3)
90.017131300521896
 
Your explanation makes lots of sense...

I'd defined a function but had difficulty making it a function of t... Thanks.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
What percentage of programmers have learned to touch type? Have you? Do you think it's important, not just for programming, but for more-than-casual computer users generally? ChatGPT didn't have much on it ("Research indicates that less than 20% of people can touch type fluently, with many relying on the hunt-and-peck method for typing ."). 'Hunt-and-peck method' made me smile. It added, "For programmers, touch typing is a valuable skill that can enhance speed, accuracy, and focus. While...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...

Similar threads

Replies
1
Views
1K
Replies
4
Views
5K
Replies
16
Views
2K
Replies
6
Views
7K
Replies
3
Views
2K
Replies
3
Views
3K
Replies
6
Views
3K
Replies
7
Views
5K
Back
Top