Beginner's Guide to Coding and Data

Level: Beginner

Is your name also a NUMBER? | Find what number your name is with math and code

video

expand_more chevron_left

text

expand_more chevron_left

Unveiling The Numeric Nature of Names

With 1 quadrillion, 360 trillion, and some change in mind, let's delve into how everyone's name can also be seen as a number. Intrigued? We invite you to explore this with us.

First things first, here's what we'll be covering:

  • Representation in different bases
  • Finding patterns in higher bases
  • Discovering your name as a number

On Representing Numbers

We've already looked into how numbers can be expressed in different bases. As we go beyond base 10, we start using letters as digits, necessitating more unique characters. But what's truly fascinating is the idea that our names can also be expressed as numbers in a specific base.

let base10 = 1360000000000000;
let base36 = base10.toString(36);

So why does this matter? Because with this concept, we open up a whole new way of looking at numbers and text as interconnected.

Your Name, In Numbers

Using another notebook we've prepared, you can play around with different bases. Let's say you pick a random number in the quadrillions and begin manually checking each base. If luck is on your side, you might find that your name spells out in one of these bases!

function findNameInBase(name, base) {
    let num = parseInt(name, base);
    return num;
}

let name = "deep lizard";
let base = 36;
let nameAsNum = findNameInBase(name, base);

And voila! Now you know your name in numbers. And don't worry, if you think this is a matter of sheer luck, it isn't. We've used methods to find the right number.

Constraints and Considerations

Before we wrap up, let's touch on constraints. You might notice that we can't go beyond 10 characters. This is due to range constraints, which are a general limitation of computing resources. In JavaScript, for example, the largest integer that can be represented is about 9 quadrillion.

const maxInt = Number.MAX_SAFE_INTEGER;  // 9 quadrillion

These are the types of challenges we often run into. Keep this in mind, continue to explore, and most importantly, keep up the hard work. We look forward to seeing you in the next exploration!

quiz

expand_more chevron_left
deeplizard logo DEEPLIZARD Message notifications

Quiz Results

resources

expand_more chevron_left
In base-36, the number 360927794919225 is expressed using the numeral deeplizard. Yes. Everyone's name is also a number in some base. Let's check this out. Notebook links: https://beta.observablehq.com/@deeplizard/positional-numeral-systems https://beta.observablehq.com/@deeplizard/find-the-numbers-for-your-name Prerequisites videos: Numerical data explained - https://youtu.be/YDDqe60omL0 Numeral vs Number - https://youtu.be/RSdnNZBj8HQ Binary vs Decimal - https://youtu.be/-MM6PcEQnWc Hexadecimal explained - https://youtu.be/JlLnt4aJEK0 5 Patterns with Numbers - https://youtu.be/-iMpJ-xGG4k πŸ•’πŸ¦Ž VIDEO SECTIONS πŸ¦ŽπŸ•’ 00:00 Welcome to DEEPLIZARD - Go to deeplizard.com for learning resources 00:30 Help deeplizard add video timestamps - See example in the description 06:26 Collective Intelligence and the DEEPLIZARD HIVEMIND πŸ’₯🦎 DEEPLIZARD COMMUNITY RESOURCES 🦎πŸ’₯ πŸ‘‹ Hey, we're Chris and Mandy, the creators of deeplizard! πŸ‘€ CHECK OUT OUR VLOG: πŸ”— https://youtube.com/deeplizardvlog πŸ’ͺ CHECK OUT OUR FITNESS CHANNEL: πŸ”— https://www.youtube.com/channel/UCdCxHNCexDrAx78VfAuyKiA 🧠 Use code DEEPLIZARD at checkout to receive 15% off your first Neurohacker order: πŸ”— https://neurohacker.com/shop?rfsn=6488344.d171c6 ❀️🦎 Special thanks to the following polymaths of the deeplizard hivemind: Mano Prime πŸ‘€ Follow deeplizard: Our vlog: https://youtube.com/deeplizardvlog Fitness: https://www.youtube.com/channel/UCdCxHNCexDrAx78VfAuyKiA Facebook: https://facebook.com/deeplizard Instagram: https://instagram.com/deeplizard Twitter: https://twitter.com/deeplizard Patreon: https://patreon.com/deeplizard YouTube: https://youtube.com/deeplizard πŸŽ“ Deep Learning with deeplizard: AI Art for Beginners - https://deeplizard.com/course/sdcpailzrd Deep Learning Dictionary - https://deeplizard.com/course/ddcpailzrd Deep Learning Fundamentals - https://deeplizard.com/course/dlcpailzrd Learn TensorFlow - https://deeplizard.com/course/tfcpailzrd Learn PyTorch - https://deeplizard.com/course/ptcpailzrd Natural Language Processing - https://deeplizard.com/course/txtcpailzrd Reinforcement Learning - https://deeplizard.com/course/rlcpailzrd Generative Adversarial Networks - https://deeplizard.com/course/gacpailzrd Stable Diffusion Masterclass - https://deeplizard.com/course/dicpailzrd πŸŽ“ Other Courses: DL Fundamentals Classic - https://deeplizard.com/learn/video/gZmobeGL0Yg Deep Learning Deployment - https://deeplizard.com/learn/video/SI1hVGvbbZ4 Data Science - https://deeplizard.com/learn/video/d11chG7Z-xk Trading - https://deeplizard.com/learn/video/ZpfCK_uHL9Y πŸ›’ Check out products deeplizard recommends on Amazon: πŸ”— https://amazon.com/shop/deeplizard πŸ“• Get a FREE 30-day Audible trial and 2 FREE audio books using deeplizard's link: πŸ”— https://amzn.to/2yoqWRn 🎡 deeplizard uses music by Kevin MacLeod πŸ”— https://youtube.com/channel/UCSZXFhRIx6b0dFX3xS8L1yQ ❀️ Please use the knowledge gained from deeplizard content for good, not evil.

updates

expand_more chevron_left
deeplizard logo DEEPLIZARD Message notifications

Update history for this page

Did you know you that deeplizard content is regularly updated and maintained?

  • Updated
  • Maintained

Spot something that needs to be updated? Don't hesitate to let us know. We'll fix it!


All relevant updates for the content on this page are listed below.