Module:Factorization
| This module is rated as beta. It is considered ready for widespread use, but as it is still relatively new, it should be applied with some caution to ensure results are as expected. |
| Editing of this module by new or unregistered users is currently disabled. See the protection policy and protection log for more details. If you cannot edit this module and you wish to make a change, you can submit an edit request, discuss changes on the talk page, request unprotection, log in, or create an account. |
This module displays the factorization of a given number. Numbers smaller than 2 or greater than 2^53-1 return "Error: <number> out of range". Fractional numbers are rounded down.
- Parameters
- The first unnamed parameter is the number
product- the symbol to be used to indicate times. Defaults to ·bold- set to any value to make it boldserif- set to any value to make it serifbig- set to any value to make it bigprime- set to any value to have prime numbers return an unformatted link to prime instead of the number
local p = {}
local function powerformat(divisor, power, productSymbol)
if power < 1 then return ''
elseif power == 1 then return divisor .. ' ' .. productSymbol .. ' '
else return divisor .. '<sup>' .. power .. '</sup> ' .. productSymbol .. ' '
end
end
local function format(numString, bold, big, serif)
if bold then
numString = '<b>'..numString..'</b>'
end
local ret = (serif or big) and '<span ' or ''
if serif then ret = ret .. 'class="texhtml"' .. (big and ' ' or '') end
if big then ret = ret .. 'style="font-size:165%"' end
ret = ret .. ((serif or big) and '>' or '') .. numString .. ((serif or big) and '</span>' or '')
return ret
end
function p.factor(frame)
local number = tonumber(frame.args[1])
if number == nil then
return '<strong class="error">Error: input not recognized as a number</strong>'
end
number = math.floor(number)
if number < 2 or number > 2^53-1 then
return '<strong class="error">Error: ' .. number .. ' out of range</strong>'
end
local result = ""
local currentNumber = number
local power
local divisor = 2
local productSymbol = frame.args['product'] or '·'
-- Attempt factoring by the value of the divisor
-- divisor increments by 2, except first iteration (2 to 3)
while divisor <= math.sqrt(currentNumber) do
power = 0
while currentNumber % divisor == 0 do
currentNumber = currentNumber / divisor
power = power + 1
end
-- Concat result and increment divisor
-- when divisor is 2, go to 3. All other times, add 2
result = result .. powerformat(divisor, power, productSymbol)
divisor = divisor + (divisor == 2 and 1 or 2)
end
if currentNumber ~= 1 then
result = result .. currentNumber .. ' ' .. productSymbol .. ' '
end
local primeLink = frame.args['prime'] and true
if currentNumber == number and primeLink then
return '[[prime number|prime]]'
end
result = string.sub(result,1,-4)
local bold = frame.args['bold'] and true
local big = frame.args['big'] and true
local serif = frame.args['serif'] and true
return mw.text.trim(format(result, bold, big, serif))
end
return p
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.