Kaprekar and one
that's so easy a 5 year old could answer it
A Kaprekar number is a number whose square can be split into two parts whose sum is the the original number. Both parts must be positive.For example, 55^2 = 3025 and 30+25 = 55.This is an example in base 10. Kaprekar also defined his number for other bases.
D. R. Kaprekar died in 1986.
//To check whether a number is Kaprekar or not public class kaprekar { public static void main(int x)//Enter number { int num=x*x,no=x,digit=0; int rev=0; do { digit++; no=no/10; } while (no>0); no=num; while(digit > 0) { rev=rev*10+no%10; no=no/10; digit--; } int r=0; while(rev > 0) { r=r*10+rev%10; rev=rev/10; } if((r+no)==x) { System.out.println("It is a Kaprekar No. "); } else{ System.out.println("It is not a Kaprekar No. "); } } }
D. R. Kaprekar was born on 1905-01-17.
42
import java.io.*; class kaprekar { public static void main(String args[])throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter any number"); int n=Integer.parseInt(br.readLine()); int t=n,count=0; while(n!=0) { n=n/10; count++; } int s=t*t; int p=(int)Math.pow(10,count); int ld=s%p; int minus=s-ld; int fd=minus/p; int sum=fd+ld; if(sum==t) { System.out.println("Kaprekar Number"); } else { System.out.println("Not a Kaprekar number"); } } }
1/99 = 0.01 01 01 .. .. 99 is a Kaprekar number (as is any string of 9s) : 992 = 9801 and 98 + 01 = 99
Aryabhata ramanujan bhaskara bhramagupta D.R. kaprekar check out the contributions by yourself.. ;) LOL
What is a whole number that can be named as a product of a number with itself?
There are many at the end of the periodic table that are named in honor of people. Copernicium, number 112, symbol Cn, is named after Nicolaus Copernicus. Roentgenium, number 111, symbol Rg, is named after Wilhelm Röntgen. Meitnerium, number 109, symbol Mt, is named after Lise Meitner. Bohrium, number 107, symbol Bh, is named after Niels Bohr. Seaborgium, number 106, symbol Sg, is named after Glenn Seaborg. Rutherfordium, number 104, symbol Rf, is named after Ernest Rutherford. Lawrencium, number 103, symbol Lr, is named after Ernest Lawrence. Nobelium, number 102, symbol No, is named after Alfred Nobel. Mendelevium, number 101, symbol Md, is named after Dmitri Mendeleev. Fermium, number 100, symbol Fm, is named after Enrico Fermi. Einsteinium, number 99, symbol Es, is named after Albert Einstein. Curium, number 96, symbol Cm, is named after Marie Skłodowska-Curie and Pierre Curie.
A perfect square is a whole number that can be named as a product of a number with itself.
Infinity is NOT the largest number named, because infinity is not a number, it is a mathematical representation of the concept that numbers never stop. The real largest number named is centillion or 10 to the power of 303.