I want to solve the integral
$\int_{p_0}^{p_1}\left(T_0+\Gamma_p(p_0-p)\right)\frac{1}{p}dp$
Mathematica can do the indefinite integral immediately:
>>> Integrate[(T + Γ (p0 - p))*(1/p), p]
-p Γ + (T + p0 Γ) Log[p]
But addind bounds suddenly makes…
I am looking for some tips or guidance as to what machinery in mathematica can help me get at this problem numerically. I am looking for fixed points of a mapping, but the objects in question are themselves functions. Hence I am looking for a fixed…
Is there syntax that causes Mathematica solve integral equations like the one below (I know that I can transform it to a differential equation. However, I would like to know if Mathematica solves equations in integral form.)?
$$
\int_{r_0}^{x} f(z)…
I'd like to evaluate the following recursive integration using Mathematica
$$
\ M(T) = \int_0^T\int_0^\infty e^{-\delta s}g(x,s)dxds\ +\int_0^T e^{-\delta s}f(s)M(T-s)ds\,
$$
where $g(x,s)$ and $f(s)$ are statistical probability density…
I'm trying to solve with Mathematica an integral equation. I found this excellent answer (How to solve a non-linear integral equation?) solving with a collocation method a problem which can be restated as:
$$ \int_a^b f \left( \phi \left(x \right)…
I need to find the area which is locked between these two curves and a line(the darker area). I have all three equation both curves and the line.
I want just want to composite the right integral for this operation. I will evaluate the area.
My question: How do I use Mathematica to find the solution to Case 2? As a cross check for the code, does it verify the solution in Case I?
Case 1: We will look at an easier problem first. Let $|\alpha|, |\beta| \leq \alpha_c, \alpha_c \leq \pi$. I…
Given
where $h =0.5$ and $\kappa = 1$.
$G_F(s)$ is the Fourier cosine transform of $G(\lambda)$ defined
as
Then I want to solve the following Fredholm integral equation of the second kind for the function $\varphi(s)$ with $s \in [0,1]$:
I…
I'm trying to solve the following integral equation:
Integrate[-k/2 Exp[-k Abs[x-z]] f[x], {x,0,d}] == a f[z]
Differentiating twice with respect to z should yield the following differential equation if i'm not mistaken (using Leibniz integral…
I am trying to evaluate this integral but it takes too long without results.
Integrate[1/(x^2 + y^2 + z^2)^(3/2), {x, -L/2, L/2}, {y, -W/2, W/2}]
and $(W, L, z)> 0$ However, not specifying the limits gives results
In[411]:= Integrate[1/(x^2 +…
I had thought that with the following two integrals, I was simply expressing the same idea in two different but equivalent ways, with the range of the values (excluding x) within the Floor[] term being, in both instances, in the interval [100,101).…
I have trouble running a calculation without getting an error,
I have the given Fredholm equation:
where $\psi(x)=\sin x$and $K(x,y)=\cos(x/2-3y)$
Now I calculated that for the operator to be a contraction, $\lambda<\sqrt{2}$. Further, I have…
I have a 2D linear non-homogeneous Volterra integral equation of the second kind that I am painfully trying to solve. Here is my equation:
$L_o(x,y) = L_e(x,y) + \frac{1}{\pi} \int_0^{2\pi} \int_0^{\theta_\text{max}(x,y,\phi)} L_o(x+h \tan \theta…
The following integral can be solved in Mathematica:
Integrate[Exp[a*(z - 1)], {x, y, z}\[Element]Sphere[],Assumptions -> a > 0 && a\[Element]Reals]
Outputs:
But if I change Sphere[] to implicit function, the integral can not be…
I'm trying to figure out the solution to the integral equation
$$\frac{1}{2}xyf(x,y) - \int^1_0\int^1_0\left[\frac{\exp[1 - f(x,y)]}{(\exp[1 - f(x,y)] + \exp[1 - f(x',y')])^2}\right]dx'dy'=0$$
First, is this a viable question?
and if yes, How can I…