Plotting incomplete elliptic integral of 1st kindcomplete elliptic integral of the first kindAsymptotic approximation to incomplete elliptic integral of third kind at a pole - determine constantApproximations of the incomplete elliptic integral of the second kindAsymptotic behavior of elliptic integral (first kind)Weierstrass $wp$ function inverts incomplete elliptic integralcomplete elliptic integral of the 1st kind with infinitely large argumentIncomplete elliptic integral of the second kind with negative parameterintegrating incomplete elliptic integral of first kindReal and imaginary parts for incomplete elliptic integral 1st kind with complex argumentIncomplete elliptic integral and Jacobi's form

Is it insecure to send a password in a `curl` command?

Why do tuner card drivers fail to build after kernel update to 4.4.0-143-generic?

"Words were different when they (lived / were living) inside of you"

As a new Ubuntu desktop 18.04 LTS user, do I need to use ufw for a firewall or is iptables sufficient?

Violin - Can double stops be played when the strings are not next to each other?

What's the meaning of a knight fighting a snail in medieval book illustrations?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

What options are left, if Britain cannot decide?

How difficult is it to simply disable/disengage the MCAS on Boeing 737 Max 8 & 9 Aircraft?

What is the significance behind "40 days" that often appears in the Bible?

How to explain that I do not want to visit a country due to personal safety concern?

Why does a Star of David appear at a rally with Francisco Franco?

Do I need life insurance if I can cover my own funeral costs?

Custom alignment for GeoMarkers

Adventure Game (text based) in C++

When to use a slotted vs. solid turner?

I got the following comment from a reputed math journal. What does it mean?

Does multi-classing into Fighter give you heavy armor proficiency?

Is it good practice to use Linear Least-Squares with SMA?

Are ETF trackers fundamentally better than individual stocks?

How could an airship be repaired midflight?

Did Ender ever learn that he killed Stilson and/or Bonzo?

Why did it take so long to abandon sail after steamships were demonstrated?

Is there a place to find the pricing for things not mentioned in the PHB? (non-magical)



Plotting incomplete elliptic integral of 1st kind


complete elliptic integral of the first kindAsymptotic approximation to incomplete elliptic integral of third kind at a pole - determine constantApproximations of the incomplete elliptic integral of the second kindAsymptotic behavior of elliptic integral (first kind)Weierstrass $wp$ function inverts incomplete elliptic integralcomplete elliptic integral of the 1st kind with infinitely large argumentIncomplete elliptic integral of the second kind with negative parameterintegrating incomplete elliptic integral of first kindReal and imaginary parts for incomplete elliptic integral 1st kind with complex argumentIncomplete elliptic integral and Jacobi's form













0












$begingroup$


The incomplete elliptic integral of 1st kind is:
$$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:



v.phi <- seq(0, 2*pi, 1)
n.phi <- length(v.phi)
v.k <- seq(-1, +1, 0.5)
n.k <- length(v.k)
k <- rep(v.k, each = n.phi, times = 1)
phi <- rep(v.phi, each = 1, times = n.k)
df <- data.frame(k, phi)
func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)


But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?










share|cite|improve this question









$endgroup$
















    0












    $begingroup$


    The incomplete elliptic integral of 1st kind is:
    $$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
    I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:



    v.phi <- seq(0, 2*pi, 1)
    n.phi <- length(v.phi)
    v.k <- seq(-1, +1, 0.5)
    n.k <- length(v.k)
    k <- rep(v.k, each = n.phi, times = 1)
    phi <- rep(v.phi, each = 1, times = n.k)
    df <- data.frame(k, phi)
    func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
    df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)


    But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?










    share|cite|improve this question









    $endgroup$














      0












      0








      0





      $begingroup$


      The incomplete elliptic integral of 1st kind is:
      $$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
      I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:



      v.phi <- seq(0, 2*pi, 1)
      n.phi <- length(v.phi)
      v.k <- seq(-1, +1, 0.5)
      n.k <- length(v.k)
      k <- rep(v.k, each = n.phi, times = 1)
      phi <- rep(v.phi, each = 1, times = n.k)
      df <- data.frame(k, phi)
      func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
      df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)


      But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?










      share|cite|improve this question









      $endgroup$




      The incomplete elliptic integral of 1st kind is:
      $$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
      I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:



      v.phi <- seq(0, 2*pi, 1)
      n.phi <- length(v.phi)
      v.k <- seq(-1, +1, 0.5)
      n.k <- length(v.k)
      k <- rep(v.k, each = n.phi, times = 1)
      phi <- rep(v.phi, each = 1, times = n.k)
      df <- data.frame(k, phi)
      func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
      df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)


      But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?







      real-analysis elliptic-integrals






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Mar 12 at 10:28









      AndrewAndrew

      214




      214




















          0






          active

          oldest

          votes











          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: "69"
          ;
          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: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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
          ,
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3144918%2fplotting-incomplete-elliptic-integral-of-1st-kind%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Mathematics 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%2fmath.stackexchange.com%2fquestions%2f3144918%2fplotting-incomplete-elliptic-integral-of-1st-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

          Lowndes Grove History Architecture References Navigation menu32°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661132°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661178002500"National Register Information System"Historic houses of South Carolina"Lowndes Grove""+32° 48' 6.00", −79° 57' 58.00""Lowndes Grove, Charleston County (260 St. Margaret St., Charleston)""Lowndes Grove"The Charleston ExpositionIt Happened in South Carolina"Lowndes Grove (House), Saint Margaret Street & Sixth Avenue, Charleston, Charleston County, SC(Photographs)"Plantations of the Carolina Low Countrye

          random experiment with two different functions on unit interval Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Random variable and probability space notionsRandom Walk with EdgesFinding functions where the increase over a random interval is Poisson distributedNumber of days until dayCan an observed event in fact be of zero probability?Unit random processmodels of coins and uniform distributionHow to get the number of successes given $n$ trials , probability $P$ and a random variable $X$Absorbing Markov chain in a computer. Is “almost every” turned into always convergence in computer executions?Stopped random walk is not uniformly integrable

          How should I support this large drywall patch? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do I cover large gaps in drywall?How do I keep drywall around a patch from crumbling?Can I glue a second layer of drywall?How to patch long strip on drywall?Large drywall patch: how to avoid bulging seams?Drywall Mesh Patch vs. Bulge? To remove or not to remove?How to fix this drywall job?Prep drywall before backsplashWhat's the best way to fix this horrible drywall patch job?Drywall patching using 3M Patch Plus Primer