Exact Areas and Definite Integral with Python

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 16

  • @blastinc
    @blastinc 2 года назад +1

    Great simple video exactly what I was looking for . Thanks a lot saved me a lot of time searching through the documentation.

    • @JacobKoehler
      @JacobKoehler  Год назад +1

      Glad it helped! I have a bunch of calc videos and more to come!

  • @priambudiandika5068
    @priambudiandika5068 Год назад

    you help me for my assignmeent, thankyou Mr. Jacob !

  • @dvlopes23
    @dvlopes23 5 лет назад +2

    Hey, let's say that I need to calculate the area of an irregular shape. How would you approach that? Thank you

  • @user-Zohaib15
    @user-Zohaib15 5 месяцев назад

    Which editor is using you ?

  • @Mohammad12765
    @Mohammad12765 4 года назад +1

    Thanks, this really helped me. It's cool. Your voice matches with Real Engineering Narrator: Brian McManus

    • @JacobKoehler
      @JacobKoehler  4 года назад +1

      M Umer Thanks! Glad it was useful, let me know if there is anything else I can help with!

    • @Mohammad12765
      @Mohammad12765 4 года назад

      @@JacobKoehler My equation carries a natural log, when I use scipy it gives me output in symbol format, not a numerical value. For instance, f = a.ln(x), where x ranges from 1 to 10 and a is some constant. can I get a numerical value?

    • @JacobKoehler
      @JacobKoehler  4 года назад

      M Umer what if you use numpy and np.log?

    • @Mohammad12765
      @Mohammad12765 4 года назад

      @@JacobKoehler when I use sympy, numpy does work. Instead, I use sympy.log

    • @JacobKoehler
      @JacobKoehler  4 года назад

      @@Mohammad12765 Right; if you're wanting symbolic computing -- we would need to use sympy and work on a symbol that we create with sympy (x = sy.Symbol('x')). If we want numerical answers, we would use numpy, and objects created with numpy.

  • @illonggoako1372
    @illonggoako1372 2 месяца назад

    i² summation 1/n+1 partition

  • @kallizervas3345
    @kallizervas3345 Год назад

    why did you add the 1000 after the x values in the linspace function

    • @sudoer-Ht
      @sudoer-Ht 6 месяцев назад

      Check out the docs for linspace

  • @nickfleming3719
    @nickfleming3719 3 года назад +1

    How do I make my own sy.integrate?

    • @JacobKoehler
      @JacobKoehler  3 года назад

      It’s probably tricky lol but I think a power rule could be straightforward with some string methods. There was a famous program called SAINT from MIT that was the first symbolic integration machine; maybe start there? I’d be curious to hear more about what you find!