Solving equation in Mathematica

  • Context: Mathematica 
  • Thread starter Thread starter EngWiPy
  • Start date Start date
  • Tags Tags
    Mathematica
EngWiPy
Messages
1,361
Reaction score
61
Hello,

I have the following code to find the parameters Na and Q that make the expression equals [tex]10^{-10}[/tex]:

Code:
Na =.;
Q =.;
MGF[s_, gC_] := 1/(1 - gC*s);
SNRdB = 0;
SNR = 10^(SNRdB/10);
gC = 0.5*SNR;
p = gA*gB;
A = 23;
Solve[((E^(A/2)*2^-Q)/SNR \!\(
\*UnderoverscriptBox[\(\[Sum]\), \(q = 0\), \(Q\)]\(-
\*SuperscriptBox[\(1\), \(Na + q + 1\)]\)*Binomial[Q, q]*Re[
\*FractionBox[\(MGF[\(-
\*FractionBox[\(A + \((2*Pi*I \((Na + q + 1)\))\)\), \(2\ SNR\)]\), 
          gC]\), 
FractionBox[\(A + 2*Pi*I \((Na + q + 1)\)\), \(2\ SNR\)]]]\)) == 
   10^-10, {Na, Q}]

But it doesn't work? Anyone have any idea about how solving this equation?

Thanks in advance
 
Physics news on Phys.org
There are not analytical solutions for all equations. Functions like Solve, Reduce, DSolve, etc. will not always be able to find a solution. In such cases you can only find numerical solutions using e.g. FindRoot.
 
DaleSpam said:
There are not analytical solutions for all equations. Functions like Solve, Reduce, DSolve, etc. will not always be able to find a solution. In such cases you can only find numerical solutions using e.g. FindRoot.

Thanks DaleSpam for replying,

So, you are saying that If I replace the "Solve" command by "FindRoot", I may get a result?

Regards
 
The syntax for FindRoot is a little different than for Solve. You should use the help menu to find the new syntax and some examples.
 
DaleSpam said:
The syntax for FindRoot is a little different than for Solve. You should use the help menu to find the new syntax and some examples.

Ok, I will. Thanks again
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 11 ·
Replies
11
Views
5K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
10
Views
4K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 19 ·
Replies
19
Views
4K