Skip to main content

Questions tagged [simplifying-expressions]

Questions on manipulating complicated expressions and making them look simpler using Simplify, FullSimplify and Reduce.

60 votes
4 answers
12k views

This seems like a simple thing to do, but I couldn't find anything relevant from Mathematica documentation. So suppose I have an expression: a*b/(a + a*Cos[a/b]) ...
Echows's user avatar
  • 1,001
50 votes
2 answers
2k views

Here is the example: Simplify[x + y, x + y == a] Simplify[x + y, x + y == 5] Mathematica 9 output: x+y 5 I expect the ...
Nick Stranniy's user avatar
32 votes
3 answers
3k views

I am working with some unpleasantly tedious polynomials, which need to be manipulated in various ways (integrate with respect to some variable, differentiate with respect to another). Since these ...
Rex Kerr's user avatar
  • 421
21 votes
4 answers
10k views

I want to do Conjugate[a + b*I], but when I do that, the solution is Conjugate[a] - I*Conjugate[b]; when for me, a and b are ...
Marco Espinoza's user avatar
11 votes
3 answers
2k views

Context In[855]:= D[Abs[x], x] /. x -> 1 Out[855]= Derivative[1][Abs][1] In[856]:= D[x, x] /. x -> 1 Out[856]= 1 Question Why is ...
user avatar
89 votes
6 answers
7k views

I use Mathematica mainly as an aid in symbolic attacks on problems, usually intermediate or harder and often number theoretic. While Reduce, ...
CarlEdman's user avatar
  • 993
17 votes
2 answers
18k views

If I request mathematica evaluate an integral for me, I'll often get a more general ConditionalExpression than I want. Example : ...
Peeter Joot's user avatar
  • 6,518
23 votes
4 answers
19k views

I've run into some problems using Factor on polynomials with complex coefficient factors. Reading the documentation it looks like it only factors over the ...
jcelios's user avatar
  • 423
18 votes
2 answers
3k views

When using Reduce, I accidentally put a set of variables as the domain. To my surprise, it not only seems that Reduce expects ...
Tyson Williams's user avatar
30 votes
1 answer
3k views

a = (Sqrt[2] + 1) (Sqrt[2] - 1) - 1; {a/a, Simplify[a]/a, b/b == Simplify[b]/b} {1, 0, True} This one line "proof" that one ...
Grégoire Nicollier's user avatar
11 votes
2 answers
2k views

I have the following code: Simplify[Integrate[f[x] + g[x], x] == Integrate[f[x], x] + Integrate[g[x], x]] To test: $$\int{\left(f(x) + g(x)\right)dx}=\int{f(x)...
Matt Groff's user avatar
  • 1,171
31 votes
4 answers
1k views

Bug introduced in 9.0 and persisting through 12.2 I get the following output with a fresh Mathematica (ver 10.0.2.0 on Mac) session ...
David Zwicker's user avatar
18 votes
1 answer
1k views

I have a question about the concept of simplification. I want to explain it with an example. When I write the fraction $4/8$ in Mathematica, the output is 1/2. How ...
MATIRMAK's user avatar
  • 757
10 votes
4 answers
910 views

Documentation on ComplexityFunction says: With the default setting ComplexityFunction->Automatic, forms are ranked ...
Vladimir Reshetnikov's user avatar
15 votes
3 answers
9k views

A function that is the sum of two cosine terms of the same frequency x[t_] := a1 Cos[w0 t + b1] + a2 Cos[w0 t + b2]; can be simplified to a single ...
bill s's user avatar
  • 70.1k

15 30 50 per page
1
2 3 4 5
26