Solving Fredholm Equation of the second kindHow to solve a non-linear integral equation?Solving homogeneous...

Would these multi-classing house rules cause unintended problems?

What to do if authors don't respond to my serious concerns about their paper?

How can animals be objects of ethics without being subjects as well?

Quenching swords in dragon blood; why?

Caruana vs Carlsen game 10 (WCC) why not 18...Nxb6?

Why does String.replaceAll() work differently in Java 8 from Java 9?

It took me a lot of time to make this, pls like. (YouTube Comments #1)

Does Improved Divine Smite trigger when a paladin makes an unarmed strike?

Does Windows 10's telemetry include sending *.doc files if Word crashed?

Cryptic with missing capitals

Process to change collation on a database

Using only 1s, make 29 with the minimum number of digits

What is the wife of a henpecked husband called?

How to avoid being sexist when trying to employ someone to function in a very sexist environment?

Explain the objections to these measures against human trafficking

Program that converts a number to a letter of the alphabet

Why did this image turn out darker?

What is better: yes / no radio, or simple checkbox?

Groups acting on trees

Why don't American passenger airlines operate dedicated cargo flights any more?

Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?

Notes in a lick that don't fit in the scale associated with the chord

Why does a metal block make a shrill sound but not a wooden block upon hammering?

Disable the ">" operator in Rstudio linux terminal



Solving Fredholm Equation of the second kind


How to solve a non-linear integral equation?Solving homogeneous Fredholm Equation of the second kindNon-linear integral equationFredholm integral equation of the second kind with kernel containing Bessel and Struve functionsSolving Fredholm Equation of the first kindNumerical solution of singular non-linear integral equationRecursive Function Numerical IntegrationSolving an equation with no analytical form (NIntegrate)Fredholm Integral Equation of the 2nd Kind with a Singular Difference KernelNumerical Integration with Inequality Condition













4












$begingroup$


Consider the Fredholm Equation of the second kind,



$$phi(x) = 3 + lambda int_{0}^{pi} text{cos}(x-s) , phi(s) ,ds$$



Where the analytical solution is found as,



$$phi(x) = 3 + frac{6lambda}{1 - lambda frac{pi}{2}},text{sin}(x)$$



How could one use Mathematica to find a numerical solution to the same integral equation by using the method of successive approximations (i.e. the Neumann series approach)?










share|improve this question









$endgroup$

















    4












    $begingroup$


    Consider the Fredholm Equation of the second kind,



    $$phi(x) = 3 + lambda int_{0}^{pi} text{cos}(x-s) , phi(s) ,ds$$



    Where the analytical solution is found as,



    $$phi(x) = 3 + frac{6lambda}{1 - lambda frac{pi}{2}},text{sin}(x)$$



    How could one use Mathematica to find a numerical solution to the same integral equation by using the method of successive approximations (i.e. the Neumann series approach)?










    share|improve this question









    $endgroup$















      4












      4








      4





      $begingroup$


      Consider the Fredholm Equation of the second kind,



      $$phi(x) = 3 + lambda int_{0}^{pi} text{cos}(x-s) , phi(s) ,ds$$



      Where the analytical solution is found as,



      $$phi(x) = 3 + frac{6lambda}{1 - lambda frac{pi}{2}},text{sin}(x)$$



      How could one use Mathematica to find a numerical solution to the same integral equation by using the method of successive approximations (i.e. the Neumann series approach)?










      share|improve this question









      $endgroup$




      Consider the Fredholm Equation of the second kind,



      $$phi(x) = 3 + lambda int_{0}^{pi} text{cos}(x-s) , phi(s) ,ds$$



      Where the analytical solution is found as,



      $$phi(x) = 3 + frac{6lambda}{1 - lambda frac{pi}{2}},text{sin}(x)$$



      How could one use Mathematica to find a numerical solution to the same integral equation by using the method of successive approximations (i.e. the Neumann series approach)?







      numerical-integration integral-equations numerical-value






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 12 hours ago









      user57401user57401

      635




      635






















          2 Answers
          2






          active

          oldest

          votes


















          4












          $begingroup$

          Use DSolve



          PHI=DSolveValue[[Phi][x] == 3 + [Lambda] Integrate[ Cos[x - s] [Phi][s], {s, 0, Pi}], [Phi],x]
          (*Function[{x}, (3 (-2 + [Pi] [Lambda] - 4 [Lambda] Sin[x]))/(-2 + [Pi] [Lambda])]*)


          The solution can be further used in the form PHI[x].






          share|improve this answer











          $endgroup$













          • $begingroup$
            Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
            $endgroup$
            – user57401
            12 hours ago






          • 1




            $begingroup$
            @ user57401 I modified my answer!
            $endgroup$
            – Ulrich Neumann
            11 hours ago



















          1












          $begingroup$

          Following
          Weisstein, Eric W. "Integral Equation Neumann Series." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/IntegralEquationNeumannSeries.html, the Neumann series approximation is:



          n = 10; (* for example *)
          [Phi][x_, 0] = 3;
          Do[[Phi][x_, j_] = 3 + [Lambda] Integrate[Cos[x - p] [Phi][p, j - 1], {p, 0, [Pi]}], {j, n}]


          The last term in the series [Phi][x,n] is the approximation to [Phi][x].



          Here is what Mathematica returns for [Phi][x,10].



          phi_of_ten



          To investigate convergence, I guess we could look at the difference [Phi][x,n] - [Phi][x] as n gets large, since you know [Phi][x].






          share|improve this answer











          $endgroup$













          • $begingroup$
            Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
            $endgroup$
            – user57401
            11 hours ago










          • $begingroup$
            Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
            $endgroup$
            – mjw
            10 hours ago












          • $begingroup$
            Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
            $endgroup$
            – mjw
            10 hours ago













          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "387"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f192434%2fsolving-fredholm-equation-of-the-second-kind%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4












          $begingroup$

          Use DSolve



          PHI=DSolveValue[[Phi][x] == 3 + [Lambda] Integrate[ Cos[x - s] [Phi][s], {s, 0, Pi}], [Phi],x]
          (*Function[{x}, (3 (-2 + [Pi] [Lambda] - 4 [Lambda] Sin[x]))/(-2 + [Pi] [Lambda])]*)


          The solution can be further used in the form PHI[x].






          share|improve this answer











          $endgroup$













          • $begingroup$
            Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
            $endgroup$
            – user57401
            12 hours ago






          • 1




            $begingroup$
            @ user57401 I modified my answer!
            $endgroup$
            – Ulrich Neumann
            11 hours ago
















          4












          $begingroup$

          Use DSolve



          PHI=DSolveValue[[Phi][x] == 3 + [Lambda] Integrate[ Cos[x - s] [Phi][s], {s, 0, Pi}], [Phi],x]
          (*Function[{x}, (3 (-2 + [Pi] [Lambda] - 4 [Lambda] Sin[x]))/(-2 + [Pi] [Lambda])]*)


          The solution can be further used in the form PHI[x].






          share|improve this answer











          $endgroup$













          • $begingroup$
            Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
            $endgroup$
            – user57401
            12 hours ago






          • 1




            $begingroup$
            @ user57401 I modified my answer!
            $endgroup$
            – Ulrich Neumann
            11 hours ago














          4












          4








          4





          $begingroup$

          Use DSolve



          PHI=DSolveValue[[Phi][x] == 3 + [Lambda] Integrate[ Cos[x - s] [Phi][s], {s, 0, Pi}], [Phi],x]
          (*Function[{x}, (3 (-2 + [Pi] [Lambda] - 4 [Lambda] Sin[x]))/(-2 + [Pi] [Lambda])]*)


          The solution can be further used in the form PHI[x].






          share|improve this answer











          $endgroup$



          Use DSolve



          PHI=DSolveValue[[Phi][x] == 3 + [Lambda] Integrate[ Cos[x - s] [Phi][s], {s, 0, Pi}], [Phi],x]
          (*Function[{x}, (3 (-2 + [Pi] [Lambda] - 4 [Lambda] Sin[x]))/(-2 + [Pi] [Lambda])]*)


          The solution can be further used in the form PHI[x].







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 12 hours ago

























          answered 12 hours ago









          Ulrich NeumannUlrich Neumann

          9,271516




          9,271516












          • $begingroup$
            Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
            $endgroup$
            – user57401
            12 hours ago






          • 1




            $begingroup$
            @ user57401 I modified my answer!
            $endgroup$
            – Ulrich Neumann
            11 hours ago


















          • $begingroup$
            Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
            $endgroup$
            – user57401
            12 hours ago






          • 1




            $begingroup$
            @ user57401 I modified my answer!
            $endgroup$
            – Ulrich Neumann
            11 hours ago
















          $begingroup$
          Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
          $endgroup$
          – user57401
          12 hours ago




          $begingroup$
          Thank you, but how can I use the function Mathematica returns to, say, investigate the convergence of the new $phi (x)$ function?
          $endgroup$
          – user57401
          12 hours ago




          1




          1




          $begingroup$
          @ user57401 I modified my answer!
          $endgroup$
          – Ulrich Neumann
          11 hours ago




          $begingroup$
          @ user57401 I modified my answer!
          $endgroup$
          – Ulrich Neumann
          11 hours ago











          1












          $begingroup$

          Following
          Weisstein, Eric W. "Integral Equation Neumann Series." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/IntegralEquationNeumannSeries.html, the Neumann series approximation is:



          n = 10; (* for example *)
          [Phi][x_, 0] = 3;
          Do[[Phi][x_, j_] = 3 + [Lambda] Integrate[Cos[x - p] [Phi][p, j - 1], {p, 0, [Pi]}], {j, n}]


          The last term in the series [Phi][x,n] is the approximation to [Phi][x].



          Here is what Mathematica returns for [Phi][x,10].



          phi_of_ten



          To investigate convergence, I guess we could look at the difference [Phi][x,n] - [Phi][x] as n gets large, since you know [Phi][x].






          share|improve this answer











          $endgroup$













          • $begingroup$
            Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
            $endgroup$
            – user57401
            11 hours ago










          • $begingroup$
            Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
            $endgroup$
            – mjw
            10 hours ago












          • $begingroup$
            Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
            $endgroup$
            – mjw
            10 hours ago


















          1












          $begingroup$

          Following
          Weisstein, Eric W. "Integral Equation Neumann Series." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/IntegralEquationNeumannSeries.html, the Neumann series approximation is:



          n = 10; (* for example *)
          [Phi][x_, 0] = 3;
          Do[[Phi][x_, j_] = 3 + [Lambda] Integrate[Cos[x - p] [Phi][p, j - 1], {p, 0, [Pi]}], {j, n}]


          The last term in the series [Phi][x,n] is the approximation to [Phi][x].



          Here is what Mathematica returns for [Phi][x,10].



          phi_of_ten



          To investigate convergence, I guess we could look at the difference [Phi][x,n] - [Phi][x] as n gets large, since you know [Phi][x].






          share|improve this answer











          $endgroup$













          • $begingroup$
            Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
            $endgroup$
            – user57401
            11 hours ago










          • $begingroup$
            Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
            $endgroup$
            – mjw
            10 hours ago












          • $begingroup$
            Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
            $endgroup$
            – mjw
            10 hours ago
















          1












          1








          1





          $begingroup$

          Following
          Weisstein, Eric W. "Integral Equation Neumann Series." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/IntegralEquationNeumannSeries.html, the Neumann series approximation is:



          n = 10; (* for example *)
          [Phi][x_, 0] = 3;
          Do[[Phi][x_, j_] = 3 + [Lambda] Integrate[Cos[x - p] [Phi][p, j - 1], {p, 0, [Pi]}], {j, n}]


          The last term in the series [Phi][x,n] is the approximation to [Phi][x].



          Here is what Mathematica returns for [Phi][x,10].



          phi_of_ten



          To investigate convergence, I guess we could look at the difference [Phi][x,n] - [Phi][x] as n gets large, since you know [Phi][x].






          share|improve this answer











          $endgroup$



          Following
          Weisstein, Eric W. "Integral Equation Neumann Series." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/IntegralEquationNeumannSeries.html, the Neumann series approximation is:



          n = 10; (* for example *)
          [Phi][x_, 0] = 3;
          Do[[Phi][x_, j_] = 3 + [Lambda] Integrate[Cos[x - p] [Phi][p, j - 1], {p, 0, [Pi]}], {j, n}]


          The last term in the series [Phi][x,n] is the approximation to [Phi][x].



          Here is what Mathematica returns for [Phi][x,10].



          phi_of_ten



          To investigate convergence, I guess we could look at the difference [Phi][x,n] - [Phi][x] as n gets large, since you know [Phi][x].







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 10 hours ago

























          answered 11 hours ago









          mjwmjw

          3116




          3116












          • $begingroup$
            Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
            $endgroup$
            – user57401
            11 hours ago










          • $begingroup$
            Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
            $endgroup$
            – mjw
            10 hours ago












          • $begingroup$
            Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
            $endgroup$
            – mjw
            10 hours ago




















          • $begingroup$
            Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
            $endgroup$
            – user57401
            11 hours ago










          • $begingroup$
            Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
            $endgroup$
            – mjw
            10 hours ago












          • $begingroup$
            Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
            $endgroup$
            – mjw
            10 hours ago


















          $begingroup$
          Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
          $endgroup$
          – user57401
          11 hours ago




          $begingroup$
          Thank you! When I try to run this, my output is returning the value of 3? How did you get Mathematica to return the series above for [Phi][10]?
          $endgroup$
          – user57401
          11 hours ago












          $begingroup$
          Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
          $endgroup$
          – mjw
          10 hours ago






          $begingroup$
          Please clear out your variables, perhaps with Evaluation: Quit Kernel: Local. To print the final (nth) value: [Phi][x, n].
          $endgroup$
          – mjw
          10 hours ago














          $begingroup$
          Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
          $endgroup$
          – mjw
          10 hours ago






          $begingroup$
          Made some edits to my answer. Had a couple of typos. Within a function definition it is x_, otherwise x. Also, [Phi][x,j] needs two arguments, one for x and one for the jth approximation. Hope its clear.
          $endgroup$
          – mjw
          10 hours ago




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Mathematica Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f192434%2fsolving-fredholm-equation-of-the-second-kind%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

          How do i solve the “ No module named 'mlxtend' ” issue on Jupyter?

          Pilgersdorf Inhaltsverzeichnis Geografie | Geschichte | Bevölkerungsentwicklung | Politik | Kultur...