Questions tagged [simplifying-expressions]
Questions on manipulating complicated expressions and making them look simpler using Simplify, FullSimplify and Reduce.
2,647 questions
1
vote
0
answers
127
views
Summation contains additional $\frac{\zeta(3)}{8\pi^2}$ term if evaluated without presimplification
As noted in this math.se question from 2018 (which was using WolframAlpha and Mathematica 7.0, though it persists in 14.0.0), Mathematica's evaluation of the following sum depends on where the ...
4
votes
1
answer
149
views
How to Simplify 'unordered' lists of expressions
Say I have a list containing some expressions, for instance
...
3
votes
3
answers
247
views
Why this simple phase factor cannot be simplified?
This example surprises me a lot:
...
0
votes
2
answers
115
views
Collect with respect to different expressions in x
I have some expression like this
...
2
votes
1
answer
149
views
Factor out specific term
I want to transform expr by factoring out only the E^(-t γ) term. I could implement it like in my code below, but is there a ...
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
...
0
votes
0
answers
111
views
Is there a better way to simplify logical expressions re than FullSimplify?
I have an example where Reduce outputted
...
3
votes
1
answer
135
views
Simplifying expression containing square roots to zero
Why does Mathematica not simplify the following expression to zero?
...
1
vote
1
answer
319
views
Why isn't Mathematica recognizing that exponents distribute over products? [closed]
I would expect the command
FullSimplify[(a b)^p == a^p b^p, {a, b, p} > 0]
to evaluate to True. But it doesn't; it just ...
5
votes
2
answers
185
views
Simplifying expression involving square roots and fractional powers
After using FullSimplify on an input expression, Mathematica ends up with
$$
-c L \sqrt{\frac{\delta \epsilon }{c L \sqrt{-\left((\delta -1) \epsilon (\delta +\...
3
votes
1
answer
78
views
List the positions off all Parts of expression
Say I have
expr=a (b + c (d (f + g) + e (j + i)));
Then when I use Depth I find the expression has a depth of ...
3
votes
2
answers
199
views
Simplifying fractions with complex numbers
How can I cajole Mathematica to transform
(a+b*I)/(c+d*I)
into
((a*c+b*d)+I*(b*c-a*d))/(c^2+d^2)
I tried the following, but it ...
4
votes
6
answers
829
views
Obtaining reverse Polish notation from expression
I need to obtain the reverse Polish notation from an expression consisting of symbols and the &&, || operators.
...
1
vote
0
answers
62
views
Behaviour of Integrate with GenerateConditions flag
I am trying the following integral with Mathematica 13.3
...
3
votes
1
answer
229
views
Series expansion involving incomplete Beta function
I am trying to expand the following around u=1/2.
...