Questions tagged [symbolic]
For questions about symbolic computation, as opposed to numerical computations.
49 questions from the last 365 days
2
votes
1
answer
116
views
Integration of function involving ArcCsc with assumptions returns wrong answer
When I ask Mathematica (version 14.1) to do the following symbolic integration:
...
0
votes
0
answers
70
views
Verify a first integral of a complicated ODE symbolically
I have an ODE of the form:
y^{(4)}[x]==F[y^{(3)}[x],y''[x],y'[x],y[x]]
for some complicated (but explicit) $F$ -- the exact form isn't really relevant to the ...
3
votes
1
answer
302
views
How to express Meijer G-function into a form involving well-known functions?
I'm working on MAT 14.3, I am attempting to evaluate the integral int[n] for n=0,1,2,3 in symbolic form :
...
0
votes
1
answer
111
views
Is it possible to find eigenvectors of matrix $f(1)$ in the given code analytically in terms of the variable $y$?
I have this differential matrix equation f'[x] == {{2 x, y + 5 I}, {-3 I + 2 y, Sin[3 x] - 5 y}}.f[x] for f[x] with the initial ...
1
vote
0
answers
61
views
Using symbolic expression in Compile
I found a Mathematica notebook on the internet, which calculates the inverse kinematics of a 6DoF robot.
link to the notebook
In one part of the code it gives a symbolic expression using the Solve[] ...
4
votes
1
answer
148
views
How to implement a 2x2 operator in Mathematica?
I am trying to write a Mathematica program to compute the following:
For a given Hermitian matrix $\rho$, the operator $L_\theta$ with respect to a parameter $\theta$ is defined as:
\begin{equation}
...
1
vote
1
answer
154
views
Symbolically solving a set of three-variable nonlinear equations fails to get a simplified result
I want to use Solve to find symbolic solutions of the following set of equations and get simplified or factorised symbolic solutions. The equations are
...
6
votes
3
answers
368
views
Pure functions from pure functions
I study the behavior of spatial curves and it is very convenient to write curvature and torsion as pure functions (PF).
It is often necessary to obtain their combinations, integrals and differentiates ...
10
votes
3
answers
462
views
How to make DSolve obtain this solution to this IVP first order ODE?
V 14.3 can not solve this IVP(Initial value problem) first order ode from textbook
...
0
votes
2
answers
186
views
Solve symbolically for $u$ from $\sum_{i=1}^{n}\big(u\,x_i + y_i\big) = 0$
Trying Wolfram 14.3. It was with great surprise I saw the engine cannot symbolically handle Sum with a symbolic upper limit. I’m copying here the response I got ...
5
votes
3
answers
330
views
How to improve the symbolic computation speed for plane geometry with multiple constraint conditions?
This is the simple geometry problem I want to solve:
In triangle ABC with side lengths a, b, c respectively, there is a point D on side AB, where AD = d. Find the length of CD.
When solving this ...
4
votes
2
answers
303
views
Conflicting results for the two forms of the same integral
(Edited to emphasize the point about assumptions).
Consider a simple integral:
Integrate[Exp[I x/2], {x, 0, 2 Pi}]
Mathematica produces the following answer: ...
3
votes
1
answer
118
views
Is there a built-in function or custom function that can perform symbolic solving under `GeometricScene` constraints?
In the new version of Mathematica, there is a new function called GeometricSolveValues that can solve for unknown geometric quantities in a geometric scene with ...
5
votes
3
answers
449
views
Linear system of matrices
I don't know Mathematica very well, I have an equation involving matrices of the following form:
given two $5\times5$ matrices $A,B$ where $B$ is nilpotent we want to find a matrix $X$ such that
...
4
votes
2
answers
505
views
Wave equation via Laplace transform
Solve, via Laplace transforms
\begin{align}
w_{tt}&=w_{xx}\\
w(0,t)&=g(t), \lim_{x \rightarrow \infty}w(x,t)=0, \: x,t\geq 0\\
w(x,0)&=0=w_t(x,0)
\end{align}
where $w$ is the ...