Is Sigma the Only Variable Affecting Delta in Gaussian Derivative Equations?

  • Thread starter Thread starter wil3
  • Start date Start date
  • Tags Tags
    Software
Click For Summary

Discussion Overview

The discussion centers on the relationship between the parameters in the sixth derivative of a normal distribution and the variable delta, particularly whether sigma is the only variable affecting delta in the context of Gaussian derivative equations. The scope includes mathematical reasoning and exploratory problem-solving related to Gaussian functions and their derivatives.

Discussion Character

  • Mathematical reasoning
  • Exploratory

Main Points Raised

  • One participant presents a relation involving the sixth derivative of a normal distribution and expresses a belief that the solution does not depend on mu, only on sigma.
  • Another participant suggests that the absence of mu in the result of their calculations may indicate that mu does not affect the outcome, proposing a method to solve for delta using polynomial equations.
  • A third participant notes the presence of imaginary solutions in their calculations but insists that real solutions exist based on graphical analysis, seeking clarification on the cubic solution approach.
  • Further contributions discuss substituting variables to simplify the polynomial equations and suggest that complex solutions may not affect the real solutions when actual parameters are applied.
  • One participant shares a specific output from the Reduce function, expressing uncertainty about interpreting the result but noting that it evaluates to a numerical value consistent with their expectations.

Areas of Agreement / Disagreement

Participants express differing views on the implications of their findings, particularly regarding the role of mu and the nature of the solutions (real vs. complex). There is no consensus on the interpretation of the results or the significance of the parameters involved.

Contextual Notes

Participants acknowledge the complexity of the equations and the potential for multiple solutions, including both real and complex values. The discussion highlights the need for careful interpretation of results and the dependence on specific parameter values.

wil3
Messages
177
Reaction score
1
I have tried mathematica, and it says it lacks the means to solve it:

The function
[tex] g6_{\mu,\sigma}[x][/tex]
represents the SIXTH derivative of a normal distribution with unspecified parameters. I am looking to solve the relation:
[tex] g6_{\mu,\sigma}[\mu+ \frac{\delta}{2}] + g6_{\mu,\sigma}[\mu - \frac{\delta}{2}] = 0[/tex]
in terms of [tex]\delta[/tex]. I have a feeling that the answer does not depend on mu, just sigma.

The application is finding the minimum separation required between the central peaks of two 4-derivative gaussian curves such that there occur no inflections on the consolidated central peak. This is related to Sparrow's criterion.

Thank you very much for any help.
 
Physics news on Phys.org
Check all this carefully to make certain I have not misunderstood or made a mistake.

In[1]:= g[x_]:=E^-((x-mu)^2/(2 sig^2));
In[2]:= d = Derivative[6][g];
In[3]:= Simplify[d[mu + del/2] + d[mu - del/2]]

Notice mu does not appear in the result. Perhaps that settles your question.

If not then notice only the 6th order polynomial can supply solutions and del always appears to even powers so you can use tricks to solve a cubic and then find square roots for the six original solutions. But try brute force.

In[4]:= Simplify[Solve[del^6-60*del^4*sig^2+720*del^2*sig^4-960*sig^6 == 0, del]]

Now you have to decide which of those six apply to your problem.
 
Yeah, another method I tried gets those imaginary solutions as well. My only issue with that is that the graph very definitely has a real solution, since certain values of sigma cause the graph to hit the x-axis and then cross it. I tried running a bunch of points to approximate it, and I got a number somewhere around 1.33, but I would like to know the full form.

Can you explicate the cubic solution approach?
 
Since all your del are to even powers you effectively substitute newdel=del^2 and get

Simplify[Solve[newdel^3-60*newdel^2*sig^2+720*newdel*sig^4-960*sig^6 == 0, newdel]]

Then you get three nice and often somewhat more compact solutions for newdel. Each of those is the square of a solution for del and there are positive and negative square roots. For some problems you can determine by inspection which newdel solution applies.

In some cases complex values in a solution will wash out to give you real solutions when you put in your actual parameters.

If I take the first of those 6 solutions, substitute sig->2, FullSimplify, take the resulting polynomial and plot it I see 6 nice real solutions. So perhaps the complex values are just used in the presentation of the solutions and aren't giving you complex roots after all.
 
Okay, so I just used the Reduce function and got \[Delta] == -\[Sigma] Sqrt[Root[-960 + 720 #1 - 60 #1^2 + #1^3 &, 1]]

I do not know how to interpret this output... once we get to the Slot operator, my understanding begins to run out. However, this expression evaluates numerically to 1.22`sigma, which is the correct answer.

Thanks for your help. You're a pro.
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 9 ·
Replies
9
Views
5K
  • · Replies 1 ·
Replies
1
Views
70K
  • · Replies 8 ·
Replies
8
Views
16K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 46 ·
2
Replies
46
Views
9K
  • · Replies 2 ·
Replies
2
Views
8K
  • · Replies 125 ·
5
Replies
125
Views
20K
  • · Replies 13 ·
Replies
13
Views
4K