Ask Your Question

bukzor's profile - activity

2021-11-29 00:39:25 +0200 received badge  Notable Question (source)
2018-01-28 06:52:00 +0200 received badge  Popular Question (source)
2013-12-29 04:44:17 +0200 commented answer solve equation of erf

I don't know enough about how this works; will fixing the sage enhancement allow this expression to be simplified, considering that Maxima won't simplify it?

2013-12-28 13:00:43 +0200 commented answer solve equation of erf

Thanks, that helped, some. Could you take a look at my updated question? I'm still having issues.

2013-12-27 10:37:31 +0200 received badge  Editor (source)
2013-12-27 09:23:22 +0200 received badge  Supporter (source)
2013-12-27 00:53:08 +0200 asked a question solve equation of erf

I used @ndomes' method of using numeric functions, but I still wind up unable to prove that erf... == erf...:

sage: var('x sigma mu')
sage: assume(sigma > 0)
sage: eq3 = (-erf((sqrt(2)*mu - sqrt(2)*x)/(2*sigma)) == -erf((sqrt(2)*(mu - x))/(2*sigma)))
sage: show(eq3)
sage: show(bool(eq3))

$\newcommand{\Bold}[1]{\mathbf{#1}}-\text{erf}\left(\frac{\sqrt{2} \mu - \sqrt{2} x}{2 \, \sigma}\right) = -\text{erf}\left(\frac{\sqrt{2} {\left(\mu - x\right)}}{2 \, \sigma}\right)$

$\newcommand{\Bold}[1]{\mathbf{#1}}\mathrm{False}$


This slightly simpler equation works correctly however:

sage: eq4 = (-erf((sqrt(2)*mu - sqrt(2)*x)/(sigma)) == -erf((sqrt(2)*(mu - x))/(sigma)))
sage: show(eq4)
sage: show(bool(eq4))

$-\text{erf}\left(\frac{\sqrt{2} \mu - \sqrt{2} x}{\sigma}\right) = -\text{erf}\left(\frac{\sqrt{2} {\left(\mu - x\right)}}{\sigma}\right)$

$\mathrm{True}$


What's going on here?? Is it related to being unable to reduce inverse_erf(erf()) below?

sage: solve(erf(x) == erf(y), x)[0].simplify_full()
x == inverse_erf(erf(y))