Тёмный

Mapping Combinatorics 

DiBeos
Подписаться 6 тыс.
Просмотров 3,9 тыс.
50% 1

😎 Become a member to have exclusive access:
/ @dibeos
📈 Check out my Udemy courses (you may find something that interests you 😉): www.udemy.com/...
📊 Do you need PRIVATE CLASSES on Math & Physics, or do you know somebody who does? I might be helpful! My personal Whatsapp and email: +393501439448 ; dibeos.contact@gmail.com
🔔 Subscribe:
/ @dibeos
🥹 Consider supporting us on Patreon:
www.patreon.co...
---
Source:
www.cs.uleth.c...
---
Image usage:
Croissants:
commons.wikime...
commons.wikime...
commons.wikime...
commons.wikime...
Doughnuts:
commons.wikime...
Glazed doughnut (1387333).jpg
commons.wikime...
commons.wikime...

Опубликовано:

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 61   
@SantosAdducci
@SantosAdducci Месяц назад
Graph theory next?
@dibeos
@dibeos Месяц назад
Do you want it...? You have to say if you want it first haha 😎
@zackbuildit88
@zackbuildit88 Месяц назад
​@@dibeos... I do, is me enough? :(
@dibeos
@dibeos Месяц назад
@@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 Месяц назад
@@dibeos HOORAY! I've been struggling to find any approachable resources for learning it honestly
@dibeos
@dibeos Месяц назад
@@zackbuildit88 we are happy to know that! 😎
@shaneri
@shaneri Месяц назад
Thanks Luca and Sophia, combinatorics is great! I'd like to hear more about permutations
@dibeos
@dibeos Месяц назад
That's awesome. There are very interesting math results related to permutations 😎
@gamersway960
@gamersway960 Месяц назад
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 Месяц назад
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 😎
@tinyleopard6741
@tinyleopard6741 Месяц назад
Nice video, it's really good for introducing people to combinatorics.
@dibeos
@dibeos Месяц назад
@@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 😎
@victork8708
@victork8708 Месяц назад
oh acrually would like to see more about descrete math!
@dibeos
@dibeos Месяц назад
@@victork8708 that’s great! We will do it!!! 😎 stay tuned
@palindrame
@palindrame Месяц назад
Would love a video dedicated entirely to graph theory. Great work guys!
@dibeos
@dibeos Месяц назад
@@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 Месяц назад
@@dibeos love that! 🥂
@dibeos
@dibeos Месяц назад
@@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 Месяц назад
@@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 Месяц назад
@@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!
@mohankumaro2409
@mohankumaro2409 Месяц назад
Excited for any topic in combinatorics
@dibeos
@dibeos Месяц назад
awesome! we will have more of it in the channel 😎
@geoffreyfaust3443
@geoffreyfaust3443 Месяц назад
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 Месяц назад
@@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 Месяц назад
@@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.
@diarmuidkeane1
@diarmuidkeane1 Месяц назад
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 Месяц назад
@@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 Месяц назад
@@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()
@ifrazali3052
@ifrazali3052 Месяц назад
Another video Another Banger
@dibeos
@dibeos Месяц назад
@@ifrazali3052 thanks!!! 😎
@Cooososoo
@Cooososoo Месяц назад
We need Counting techniques video
@dibeos
@dibeos Месяц назад
@@Cooososoo it sounds promising! Can you give more details?
@Cooososoo
@Cooososoo Месяц назад
@@dibeos Like generating functions
@irvinep
@irvinep Месяц назад
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 Месяц назад
@@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 Месяц назад
@@dibeos Thanks mate. I will wait.
@goat2265
@goat2265 Месяц назад
Underrated channel found!
@dibeos
@dibeos Месяц назад
@@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 😎
@Mahi2-k7i
@Mahi2-k7i Месяц назад
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 Месяц назад
@@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 Месяц назад
@@dibeos 👍👍👍
@Jididududud
@Jididududud Месяц назад
Bro will surpass 3Blue1Brown in future ❤
@dibeos
@dibeos Месяц назад
Thank you so much!!!!!!!!!!! 😎 Tell us what kind of content you want and we will make it 😉
@mohankumaro2409
@mohankumaro2409 Месяц назад
Both are great. Instead of competition let's have coalition so that we have lot of combinations and permutations ❤😂
@dibeos
@dibeos Месяц назад
@@mohankumaro2409 clever joke hahaha 😎
@Satisfiyingvideo-uu9pw
@Satisfiyingvideo-uu9pw Месяц назад
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 Месяц назад
awesome, share your paper here with us!
@Satisfiyingvideo-uu9pw
@Satisfiyingvideo-uu9pw Месяц назад
​​@@dibeosdo you have any facebook id.
@moonwatcher2001
@moonwatcher2001 Месяц назад
❤ awesome video!!!
@dibeos
@dibeos Месяц назад
@@moonwatcher2001 thanks!!! Let us know what kind of content you’d like to see in the channel 😎 have a nice day
@moonwatcher2001
@moonwatcher2001 Месяц назад
@@dibeos I love mapping of concepts and knowledge. Yours is awesome. Any mapping would be interesting
@dibeos
@dibeos Месяц назад
@@moonwatcher2001 great! We will create a playlist of “mappings” 😎
@moonwatcher2001
@moonwatcher2001 Месяц назад
@@dibeos great!!!
@SobTim-eu3xu
@SobTim-eu3xu Месяц назад
New video!)❤
@dibeos
@dibeos Месяц назад
@@SobTim-eu3xu yes!!! I hope you like it 😎
@SobTim-eu3xu
@SobTim-eu3xu Месяц назад
@@dibeos ofc, how I can't like it)
@Satisfiyingvideo-uu9pw
@Satisfiyingvideo-uu9pw Месяц назад
How can i contact with you personally
@dibeos
@dibeos Месяц назад
@@Satisfiyingvideo-uu9pw check my email on the description of the channel 😎
@primenumberbuster404
@primenumberbuster404 Месяц назад
​@@dibeos 🤠
@dibeos
@dibeos Месяц назад
@@primenumberbuster404 😎
Далее
How to Get to Galois Theory Naturally
9:28
Просмотров 16 тыс.
🎙А не СПЕТЬ ли мне ПЕСНЮ?🍂
3:04:50
The ALMOST Perfect Numbers
30:01
Просмотров 39 тыс.
The Axiom of Choice
32:47
Просмотров 93 тыс.
The Key to Understanding Math (with apples)
3:32
Просмотров 16 тыс.
The Clever Way to Count Tanks - Numberphile
16:45
Просмотров 1,1 млн
Every Infinity Paradox Explained
15:57
Просмотров 215 тыс.
New Recipe for Pi - Numberphile
14:29
Просмотров 401 тыс.
How to Prove a Number is Irrational
16:15
Просмотров 29 тыс.
That's Not How the Golden Ratio Works
31:15
Просмотров 91 тыс.
🎙А не СПЕТЬ ли мне ПЕСНЮ?🍂
3:04:50