PHP Basic
PHP Interview Programs
- PHP Interview Programs
- PHP Abundant Number
- PHP Amicable Number
- PHP Armstrong Number
- PHP Average of N Numbers
- PHP Automorphic Number
- PHP Biggest of three numbers
- PHP Binary to Decimal
- PHP Common Divisors
- PHP Composite Number
- PHP Condense a Number
- PHP Cube Number
- PHP Decimal to Binary
- PHP Decimal to Octal
- PHP Disarium Number
- PHP Even Number
- PHP Evil Number
- PHP Factorial of a Number
- PHP Fibonacci Series
- PHP GCD
- PHP Happy Number
- PHP Harshad Number
- PHP LCM
- PHP Leap Year
- PHP Magic Number
- PHP Matrix Addition
- PHP Matrix Division
- PHP Matrix Multiplication
- PHP Matrix Subtraction
- PHP Matrix Transpose
- PHP Maximum Value of an Array
- PHP Minimum Value of an Array
- PHP Multiplication Table
- PHP Natural Number
- PHP Number Combination
- PHP Odd Number
- PHP Palindrome Number
- PHP Pascalβs Triangle
- PHP Perfect Number
- PHP Perfect Square
- PHP Power of 2
- PHP Power of 3
- PHP Pronic Number
- PHP Prime Factor
- PHP Prime Number
- PHP Smith Number
- PHP Strong Number
- PHP Sum of Array
- PHP Sum of Digits
- PHP Swap Two Numbers
- PHP Triangular Number
PHP Program to Check Smith Number
Photo Credit to CodeToFun
π Introduction
In the realm of programming, exploring number properties is a common and fascinating endeavor. One interesting type of number is the Smith Number.
A Smith Number is a composite number for which the sum of its digits is equal to the sum of the digits in its prime factorization.
In this tutorial, we'll delve into a PHP program that checks whether a given number is a Smith Number.
π Example
Let's take a look at the PHP code that checks whether a given number is a Smith Number.
<?php
// Function to calculate the sum of digits in a number
function sumOfDigits($num)
{
$sum = 0;
while ($num > 0)
{
$sum += $num % 10;
$num = (int)($num / 10);
}
return $sum;
}
// Function to calculate the sum of digits in the prime factorization of a number
function sumOfPrimeFactors($num)
{
$i = 2;
$sum = 0;
while ($num > 1)
{
while ($num % $i == 0)
{
$sum += sumOfDigits($i);
$num = (int)($num / $i);
}
$i++;
}
return $sum;
}
// Function to check if a number is a Smith Number
function isSmithNumber($num)
{
return sumOfDigits($num) == sumOfPrimeFactors($num);
}
// Replace this value with your desired number
$number = 85;
// Check if the number is a Smith Number
if (isSmithNumber($number))
{
echo "$number is a Smith Number.\n";
}
else
{
echo "$number is not a Smith Number.\n";
}
?>
π» Testing the Program
To test the program with different numbers, replace the value of $number.
85 is a Smith Number.
Run the script to check whether the given number is a Smith Number.
π§ How the Program Works
- The program defines three functions: sumOfDigits to calculate the sum of digits in a number, sumOfPrimeFactors to calculate the sum of digits in the prime factorization, and isSmithNumber to check if a number is a Smith Number.
- The value of $number is replaced with the desired number, and the program checks if it is a Smith Number.
- The program utilizes loops and arithmetic operations to calculate the sum of digits and the sum of digits in the prime factorization.
π Between the Given Range
Let's take a look at the php code that checks for Smith Numbers in the specified range.
<?php
// Function to calculate the sum of digits
function sumOfDigits($n)
{
$sum = 0;
while ($n > 0)
{
$sum += $n % 10;
$n = (int)($n / 10);
}
return $sum;
}
// Function to calculate the sum of prime factors
function sumOfPrimeFactors($n)
{
$sum = 0;
for ($i = 2;$i <= $n;++$i)
{
while ($n % $i == 0)
{
$sum += sumOfDigits($i);
$n = (int)($n / $i);
}
}
return $sum;
}
// Function to check if a number is prime
function isPrime($n)
{
if ($n <= 1)
{
return false;
}
for ($i = 2;$i * $i <= $n;++$i)
{
if ($n % $i == 0)
{
return false;
}
}
return true;
}
// Function to check if a number is a Smith Number
function isSmithNumber($n)
{
return isPrime($n) ? false : sumOfDigits($n) == sumOfPrimeFactors($n);
}
// Check numbers from 1 to 100
echo "Smith Numbers in the Range 1 to 100:\n";
for ($i = 1;$i <= 100;++$i)
{
if (isSmithNumber($i))
{
echo "$i ";
}
}
echo "\n";
?>
π» Testing the Program
Smith Numbers in the Range 1 to 100: 4 22 27 58 85 94
Run the program to see the Smith Numbers in the specified range.
π§ How the Program Works
- The program defines a function isPrime to check if a number is prime.
- The isSmithNumber function checks if a number is a Smith Number by comparing the sum of its digits with the sum of the digits in its prime factorization.
- The main function checks and prints Smith Numbers in the range from 1 to 100.
π§ Understanding the Concept of Smith Numbers
Before delving into the code, it's crucial to understand the concept of Smith Numbers. These numbers exhibit a unique property where the sum of their digits is equal to the sum of the digits in their prime factorization.
For example, 4, 22, 27, and 85 are Smith Numbers.
π’ Optimizing the Program
While the provided program is effective, consider exploring optimizations for larger numbers. You can further refine the code for improved efficiency or adapt it to your specific requirements.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (PHP Program to Check Smith Number), please comment here. I will help you immediately.