Mapping Combinatorics

Поділитися
Вставка
  • Опубліковано 11 січ 2025

КОМЕНТАРІ • 62

  • @SantosAdducci
    @SantosAdducci 5 місяців тому +20

    Graph theory next?

    • @dibeos
      @dibeos  5 місяців тому +5

      Do you want it...? You have to say if you want it first haha 😎

    • @zackbuildit88
      @zackbuildit88 5 місяців тому +2

      ​@@dibeos... I do, is me enough? :(

    • @dibeos
      @dibeos  5 місяців тому +4

      @@zackbuildit88 yessssss hahah we will make it! Actually, Sofia and I are studying a book about it and we have some very cool video ideas coming soon (around 2 weeks from now) 😎

    • @zackbuildit88
      @zackbuildit88 5 місяців тому +1

      @@dibeos HOORAY! I've been struggling to find any approachable resources for learning it honestly

    • @dibeos
      @dibeos  5 місяців тому +1

      @@zackbuildit88 we are happy to know that! 😎

  • @shaneri
    @shaneri 5 місяців тому +6

    Thanks Luca and Sophia, combinatorics is great! I'd like to hear more about permutations

    • @dibeos
      @dibeos  5 місяців тому +1

      That's awesome. There are very interesting math results related to permutations 😎

  • @tinyleopard6741
    @tinyleopard6741 5 місяців тому +2

    Nice video, it's really good for introducing people to combinatorics.

    • @dibeos
      @dibeos  5 місяців тому

      @@tinyleopard6741 thanks! We are currently working on future videos where we will gradually dove deeper into combinatorics. Please tell us what you’d like to see in these future videos 😎

  • @palindrame
    @palindrame 5 місяців тому +2

    Would love a video dedicated entirely to graph theory. Great work guys!

    • @dibeos
      @dibeos  5 місяців тому +1

      @@palindrame awesome!! We will start working on it. But we already have very good ideas about how to make a video containing “everything” about Graph Theory 😎

    • @palindrame
      @palindrame 5 місяців тому +1

      @@dibeos love that! 🥂

    • @dibeos
      @dibeos  5 місяців тому +1

      @@palindrame we will post it in about 2 weeks. But do tell us, do you study graph theory? What are the math areas that interest you the most?

    • @palindrame
      @palindrame 5 місяців тому +1

      @@dibeos I am a student of Theoretical Computer Science; so anything remotely related to discrete mathematics really gets me excited. Having said that I don’t mind delving into rigorous pure math every now and then 😉.

    • @dibeos
      @dibeos  5 місяців тому +1

      @@palindrame that’s cool! now that you mentioned your background we understand your interests better. our goal is to create a huge library of videos on a great variety of fields of math and physics in the years to come 😎 have a nice day!

  • @TheHebrewMathematician
    @TheHebrewMathematician 5 місяців тому +2

    Very nice introduction to the basic concepts in combinatorics!
    But it isn't a map of combinatorics, it's more or less the first two lectures you would learn in the "Introduction to combinatorics" course at university. I hoped the video would map the entire subject based on more advanced material and research in the field.

    • @dibeos
      @dibeos  5 місяців тому

      Thanks for your feedback! Well look, this was based on a book on combinatorics which was broken into three parts, all of which we touched on here, and their most essential concepts and branches. I think that fulfills the criterion of what it means to “map” a subject. Now, delving into each branch of combinatorics deeper into more advanced and particular subjects within each respective branch (enumeration, graph theory, an design theory) would be something we’d like to do in the near future 😎

  • @goat2265
    @goat2265 5 місяців тому +1

    Underrated channel found!

    • @dibeos
      @dibeos  5 місяців тому

      @@goat2265 thank you!!! Every time someone comments something like that we feel super encouraged to increase the quality and quantity of videos on the channel. Stay tuned cause this is just the beginning 😎

  • @diarmuidkeane1
    @diarmuidkeane1 5 місяців тому +4

    Are partitions considered as part of combinatorics or is that part of number theory? Just worked out a python method to output the partitions of a given number

    • @dibeos
      @dibeos  5 місяців тому +2

      @@diarmuidkeane1 As far as I know partitions are considered a part of both combinatorics and number theory. They study how numbers can be broken down into sums of other numbers, connecting to both fields. Your Python method sounds interesting and useful for exploring this concept! Can you tell me more about it? 😎

    • @diarmuidkeane1
      @diarmuidkeane1 5 місяців тому +1

      @@dibeos hey thanks for the reply - here is the script - Theres a lot to say about it - I've tried to document the methods to give some indication of the approach -- the motivation is to find a closed form expression for the partion count - from what I can see it appears to be possible but idont know yet and I have deliberately not looked it up on the intenet so pls no spoilers! ;) - -I hope to tidy it up push it to a gitlab repo at some point pls reach out if you have any questions - enjoy!
      from itertools import chain
      NUMBER = 14
      def list_all_sums_of_pairs(number: int) -> list[list[int]]:
      """returns a list of all possible unique pairs of numbers whose sum equals the given number."""
      return [[x, number - x] for x in range(1, number // 2 + 1)]
      def make_partition(partition: list[int]) -> list[list[int]]:
      """creates the list of partitions of degree n+1 from the given partition of degree n."""
      def replace_last(splayed_pair: list[int]) -> list[int]:
      """A closure that returns the given partition in outer scope but with the final element replaces by the pair generated from splaying the original partition."""
      return partition[:-1] + splayed_pair
      return list(filter(increasing, map(replace_last, list_all_sums_of_pairs(partition[-1]))))
      def increasing(nums: list[int]) -> bool:
      """predicate returns true if nums are non-strictly increasing in sequence."""
      if len(nums) list[list[int]]:
      return list(chain(*list(map(make_partition, partition_list))))
      def main():
      result = layer = [[NUMBER]]
      while layer := make_partition_list(layer):
      result += layer
      print(result)
      print(len(result))
      if __name__ == "__main__":
      main()

  • @victork8708
    @victork8708 5 місяців тому +3

    oh acrually would like to see more about descrete math!

    • @dibeos
      @dibeos  5 місяців тому +1

      @@victork8708 that’s great! We will do it!!! 😎 stay tuned

  • @mohankumaro2409
    @mohankumaro2409 5 місяців тому +2

    Excited for any topic in combinatorics

    • @dibeos
      @dibeos  5 місяців тому

      awesome! we will have more of it in the channel 😎

  • @moonwatcher2001
    @moonwatcher2001 5 місяців тому +1

    ❤ awesome video!!!

    • @dibeos
      @dibeos  5 місяців тому

      @@moonwatcher2001 thanks!!! Let us know what kind of content you’d like to see in the channel 😎 have a nice day

    • @moonwatcher2001
      @moonwatcher2001 5 місяців тому +1

      @@dibeos I love mapping of concepts and knowledge. Yours is awesome. Any mapping would be interesting

    • @dibeos
      @dibeos  5 місяців тому

      @@moonwatcher2001 great! We will create a playlist of “mappings” 😎

    • @moonwatcher2001
      @moonwatcher2001 5 місяців тому +1

      @@dibeos great!!!

  • @geoffreyfaust3443
    @geoffreyfaust3443 5 місяців тому +2

    OK, love your videos. In spoken English, the singular of the graph theory object is pronounced "verTEX", and the plural is pronounced 'vertiCES', with the accent on the long E as in "Enoch".
    Just thought you would like to know.....

    • @dibeos
      @dibeos  5 місяців тому +1

      @@geoffreyfaust3443 yes, I do want to know how to improve my pronunciation. Thanks for the tip 😎 please keep on telling me how to pronounce words correctly in future videos. It really helps me to improve my English in the long run

    • @geoffreyfaust3443
      @geoffreyfaust3443 5 місяців тому +1

      @@dibeos OK, so FYI, the words INDEX and INDICES which are widely used to notate an array of numbers in math and physics, is pronounced in English in a cognate way to VERTEX and VERTICES (MATRIX and MATRICES pretty much follow the same pattern).
      English is a strange language.

  • @Cooososoo
    @Cooososoo 5 місяців тому +2

    We need Counting techniques video

    • @dibeos
      @dibeos  5 місяців тому

      @@Cooososoo it sounds promising! Can you give more details?

    • @Cooososoo
      @Cooososoo 5 місяців тому

      @@dibeos Like generating functions

  • @irvinep
    @irvinep 5 місяців тому +1

    HI. I enjoy your videos. Please make a video on graph theory. Also please do consider my earlier request on geometric interpretation of Riemann Steljis integral. Please do make a video on origins of integration and include this geometric interpretation, ie which area is represented by this integral or does it even have a geometric interpretation. While at it you can even discuss what breaks when the integrator is not of bounded variation. Regards.

    • @dibeos
      @dibeos  5 місяців тому

      @@irvinep hi!! We will definitely as you say. About Riemann Steljis integral, I looked it up but did not understand it. I admit I need to think more about it, have a good grasp on it, and then look for a geometrical interpretation. But I will do it. It is in my to do list 😎

    • @irvinep
      @irvinep 5 місяців тому +1

      @@dibeos Thanks mate. I will wait.

  • @ifrazali3052
    @ifrazali3052 5 місяців тому +1

    Another video
    Another Banger

    • @dibeos
      @dibeos  5 місяців тому +1

      @@ifrazali3052 thanks!!! 😎

  • @Jididududud
    @Jididududud 5 місяців тому +2

    Bro will surpass 3Blue1Brown in future ❤

    • @dibeos
      @dibeos  5 місяців тому +1

      Thank you so much!!!!!!!!!!! 😎 Tell us what kind of content you want and we will make it 😉

    • @mohankumaro2409
      @mohankumaro2409 5 місяців тому +2

      Both are great. Instead of competition let's have coalition so that we have lot of combinations and permutations ❤😂

    • @dibeos
      @dibeos  5 місяців тому

      @@mohankumaro2409 clever joke hahaha 😎

  • @Mahi2-k7i
    @Mahi2-k7i 5 місяців тому +1

    Hey your channel has a few video about physics. You should upload a physics video. I dont believe in free energy. But recently i learned about bruce depalma n machine. That is a homopolar generator and the inventor ( bruce depalma a electrical engineer) claimed that its a free energy generator. But i wanted to know how that thing really work. Please help me.

    • @dibeos
      @dibeos  5 місяців тому

      @@Mahi2-k7i great idea!!! I will definitely post a video about it. And I agree with you about few videos about physics. I’m currently working on 2 physics videos to compensate for that. The goal of the channel is to have videos on math and mathematical physics. Please keep giving us good ideas like that!! 😎

    • @Mahi2-k7i
      @Mahi2-k7i 5 місяців тому

      @@dibeos 👍👍👍

  • @Satisfiyingvideo-uu9pw
    @Satisfiyingvideo-uu9pw 5 місяців тому +1

    I secret a thing. But i think now i should share it with you. I think i discover a methid for polynomial equation, make a new method for solving rubics cube,make a new way to generate electricity that dont obey faraday law of induction. Now i am workin on rsa encryption, number theory and theoritical physics. I think you should help me to submit this

    • @dibeos
      @dibeos  5 місяців тому +1

      awesome, share your paper here with us!

    • @Satisfiyingvideo-uu9pw
      @Satisfiyingvideo-uu9pw 5 місяців тому

      ​​@@dibeosdo you have any facebook id.

  • @Satisfiyingvideo-uu9pw
    @Satisfiyingvideo-uu9pw 5 місяців тому +1

    How can i contact with you personally

    • @dibeos
      @dibeos  5 місяців тому

      @@Satisfiyingvideo-uu9pw check my email on the description of the channel 😎

    • @primenumberbuster404
      @primenumberbuster404 5 місяців тому +2

      ​@@dibeos 🤠

    • @dibeos
      @dibeos  5 місяців тому

      @@primenumberbuster404 😎

  • @frendlyleaf6187
    @frendlyleaf6187 3 місяці тому +2

    Cool

  • @SobTim-eu3xu
    @SobTim-eu3xu 5 місяців тому +1

    New video!)❤

    • @dibeos
      @dibeos  5 місяців тому

      @@SobTim-eu3xu yes!!! I hope you like it 😎

    • @SobTim-eu3xu
      @SobTim-eu3xu 5 місяців тому +1

      @@dibeos ofc, how I can't like it)