Mathematical Black Hole 🌀

preview_player
Показать описание
A mysterious pattern, that no one has been able to decode... for decades!

#math #education #learning #shorts #reels #mystery #pattern
Рекомендации по теме
Комментарии
Автор

I knew, there is something special in Maths which always makes me crazy. Hurray.... We r mathematetians....

rakshaverma
Автор

The first and second examples were the same.
The 1st: 6, 3, 10, 5, 16, 8, 4, 2, 1
The 2nd 10, 5, 16, 8, 4, 2, 1

tamirerez
Автор

oddx3+1=divide by 2 again and again, awesome. even divide by 2

shivanin
Автор

Yes....odd times odd is odd + 1 is even divide by 2 will always go in pattern ultimately reach smallest unit 1

sonakshiranawat
Автор

What magic of mathematics mind blowing thing

harishabr
Автор

As long as +1 is there along with √
It's supposed to be.

ranjeeteppakayala
Автор

Veritasum has a very good video on this

amaranthswami
Автор

And I'm a program that's why I always try to program everything..😅
// C program for Mathematical Blackhole.
// Author: <|Cuemath Studio|>
#include <stdio.h>

int main() {
int num;
printf("Enter a number: ");
scanf("%d", &num);

while(1){
if(num%2 == 0){
num = num/2;
printf("%d ", num);
if(num == 1){
printf("%d ", num);
break;
}
}
if(num%2 != 0){
num = (num*3)+1;
printf("%d ", num);
if(num == 1){
printf("%d ", num);
break;
}
}
}
return 0;
}

AstitvGupta
Автор

Every time you triple it and add 1 you always get an even number. Idk where I'm going with this but.... Even numbers always get back to 1???

shalininag
Автор

Multiply with 0 and you got same answer
And there is 359 degree not 360 degree

PIKANATO