Tagged Questions
1
vote
4answers
26 views
Non Decimal Numbers on Math.ceil or Math.round in JavaScript?
I want to use Javascript to round up a number.
For example like this,
15 => 20
345 => 400
201 => 300
180 => 200
93 => 100
22 => 30
How to achieve this using Javascript? I know i ...
1
vote
1answer
35 views
Finding 2's complement of negative no
We assume that 4bit 2's complement system is used to represent both positive and negative numbers
Suppose we have to find 2's complement of no. 3
We can subtract this no. with 2^4
...
1
vote
4answers
61 views
Calculate number of years and days in mintues
Here is my code:
public class numberOfYears {
public static void main(String args[]){
String minsString = JOptionPane.showInputDialog("Enter numbers of minutes:");
double mins = ...
-4
votes
2answers
115 views
What exactly does '3.4E +/- 38 (7 digits)' mean? [closed]
I'm trying to understand the range of data types. For non-floating point numbers it's easy enough, but then for float and double the ranges are listed as:
float: 3.4E +/- 38 (7 digits)
double: 1.7E ...
2
votes
1answer
52 views
How to Convert from a Residual Number System to a Mixed Radix System?
I understand the concept of a Residual Number System and the concept of a Mixed Radix system, but I'm having difficulty getting any of the conversion methods I find to work in a simple case study.
I ...
-1
votes
4answers
95 views
Return Every THIRD odd number using javascript? [closed]
All I am trying to do is simply return every third odd number within a specified range.
This one is a bit weird for me, I tried a few different things but nothing even worth posting as my attempts ...
0
votes
2answers
52 views
Create specific range of random numbers and link different CSS styles to these
Somewhat of a noob here! What I want to do, by using javascript, is to get a random number between 10 and 25 when it’s summer, -5 and 10 when it’s spring and fall and then -20 and -5 when it’s ...
0
votes
1answer
125 views
finding ((a +b)/c)mod m
I would like to calculate:
((a+b)/c)mod m
I would like to know if there is any efficient way since a is too big but b , c and m fit in a simple 32-bit int.
0
votes
1answer
147 views
how do I write tests correctly using unittest?
I am trying to figure out how to write unit tests for functions that I have written in python - here's the code written below:
def num_buses(n):
import math
""" (int) -> int
...
0
votes
2answers
40 views
Javascript math power real/irrational_number library [duplicate]
I was looking all around the web, but could not find anything that helps me.
I need to do math: 10^(1.7), but javascript doesn't allow that. Can someone have sort of code or knows some library that ...
0
votes
1answer
56 views
“Scrambler” functions? Like random number generators
I am interested in a modification of the usual idea of random number generators. That is, typical generators generate long strings of reasonably independent, uniformly distributed numbers from that ...
1
vote
3answers
75 views
Fastest way to get number of digits on a number? [duplicate]
I have do detect the amount of digits on a number. For example, 329586 has 6 digits.
What I done, is simply parsing the number to string, and getting the string length, like:
...
2
votes
2answers
73 views
PHP increase number by one
This is a tricky one: I want to add +1 to this number: 012345675901 and the expected result is: 012345675902. Instead I get: 2739134 when I do this:
echo (012345675901+1);
When I try:
echo ...
3
votes
2answers
77 views
Finding maximum disimilar numbers between given range
Two numbers (a,b) are said to be similar if a<=10*b and b<=10*a . Now given two range low and high , return a collection containing maximum no of non - similar numbers between given range.
I ...
0
votes
4answers
110 views
How to convert a “decimal string” into an integer without the period in PHP
If I have, say, 8.1 saved as a string/plaintext, how can I change that into the integer (that I can do addition with) 81? (I've got to remove the period and change it into an integer. I can't seem to ...
0
votes
3answers
28 views
How to remove a part of a string prior to a symbol in PHP
This should be simple to answer, I'm just very new to this all...
If I have the following (the 89 is NOT constant — it could be 2, sometimes 3 numbers — but the /100 is):
89/100
how can I get ...
-1
votes
1answer
63 views
Weights and Percentages [closed]
I need to be able to edit weights values which are integers types by percentages.
For example:
I got the following weights:
Var Weight
x 100
y 50
z 50
So z is 25% ,y is 25% ...
1
vote
2answers
103 views
How to compute a threshold for a given vector/array of float numbers
Say I have the following example distribution (vector) of numbers in c++:
vector 1 vector 2 vector 3
11 4 65
128 6 66
12 4 64
13 4 ...
0
votes
1answer
56 views
Convert 1-100 to another value set
Using JavaScript, I wish to convert a value between 1-100 to a corresponding value set between 1000-150000. What is the best approach for this? Comparing and multiplying / dividing array values, or is ...
3
votes
4answers
203 views
How would you implement a divisor function?
The divisor function is the sum of divisors of a natural number.
Making a little research I found this to be a very good method if you want to find the divisor function of a given natural number N, ...
7
votes
3answers
255 views
Why is the minimum value of int 1 farther from zero than the positive value?
I want to know why int, double etc have 1 more negative value than positive value.
0
votes
2answers
110 views
Pure Change of Base
I'm trying (without much success) to write a short c++ function:
double digit(double x, int b, int d)
that returns the d-th digit in base-b expansion of the number x, which can be positive or ...
-2
votes
3answers
96 views
Convert a set of unique numbers to another set of unique numbers within range (0 to 25) [closed]
Lets say I have a set of unique numbers [5, 123, 49176, 30982, 542] now I want to convert the numbers and get another set of unique numbers (integers) which will be in range of 0 to 25
Can any one ...
0
votes
1answer
95 views
Linear mapping interval of numbers to [0,1] [closed]
I know it should be trivial, but tonight I'm not finding a solution.
Suppose I have a series of float in a given range such [0.25, 1.0]. For example:
{0.25, 0.625, 1.0}
What's the correct way to ...
0
votes
1answer
157 views
Simple Java math operations
I'm making a BMI calculator that doesn't seem to be working.
I keep getting 0 as my answer, when it should be 15.7
Could someone tell me what I'm doing wrong here?
public class ass10 {
public ...
2
votes
2answers
78 views
How can I distort the distribution of a set of random numbers?
I want to craft an algorithm that will give me numbers that are random in the sense that I have no idea what they'll be, but at the same time, numbers that are closer to 0 have to be more likely to ...
2
votes
7answers
1k views
to calculate one million prime numbers
I have got one question to print one million prime numbers . I have written a java program for that .. It's currently taking 1.5 mins approx to calculate it .. I think my solution is not that ...
0
votes
1answer
92 views
C++ Program not reading formulas
My program I have been working on is supposed to output the following:
* The number of gallons of paint required
* The hours of labor required
* The cost of the paint
* The labor charges
* The total ...
1
vote
2answers
119 views
PHP Normalise percentage values across range
I have an array of numbers and the ammount of properties in the array cannot be determined.
example:
array(30, 30, 10, 20, 60);
array(2, 53, 71, 22);
array(88, 22, 8);
etc...
Now normally, the sum ...
0
votes
1answer
77 views
Proof that there only exists exactly 4 factorion numbers? [closed]
I've having difficulty understanding why 40585 is the greatest factorion that exists. Why can there not be one greater?
Wikipedia says, "This fails to hold for d ≥ 8." In other words no factorion ...
-2
votes
2answers
103 views
Finding number of digits in integer when being passed an int = 0
Using Java btw. But Usually people seem to do this sort of thing with.
int numDigits = (int)(log10(num)+1); //can explicitly floor, or casting to int will do that
but log10(0) = -INF, which means ...
1
vote
4answers
157 views
Comparing anagrams using prime numbers
There is the problem of trying to see if two unique strings are anagrams of each other. The first solution that I had considered would be to sort both strings and see if they were equal to each other.
...
1
vote
1answer
100 views
How to choose 9 values such that
Given 9 variables x1 x2 x3 x4 x5 x6 x7 x8 x9, I want to assign real numbers to them such that:
exactly 1 pair among them sums to 2
exactly 2 pairs among them sum to 3
exactly 3 pairs among them sum ...
2
votes
2answers
103 views
Summing long numbers as learning exercise
I am trying to make a class for arbitrary size numbers. I want to redefine all operations in my class. How can I create a sum(params string[] numbers); function to sum the numbers?
Or could you ...
0
votes
3answers
147 views
Chronological numbers order - PHP [closed]
I need to find the chronological next number.
For example , I have an array :
$numbers = array(1,2,4);
I want function give me the missing chronological number : 3
more example :
$numbers = ...
0
votes
0answers
30 views
Big Number Maths in iOS [duplicate]
Possible Duplicate:
biginteger on Objective-c
Is there an inbuilt framework or library I can use in to do this calculation in Objective C for iOS devices
g^priv % prime
g=2
priv= 100 ...
0
votes
5answers
72 views
Get number by loop on if - PHP
I have this piece of code that loops 1 through 99 and is a formula.
function getExperienceByLevel ($maxLevel)
{
$levels = array ();
$current = 0;
for ($i = 1; $i <= $maxLevel; $i++)
...
0
votes
3answers
84 views
PHP Get Experience by Level
I have this piece of code that loops 1 through 99 and is a formula.
function getExperienceByLevel ($maxLevel)
{
$levels = array ();
$current = 0;
for ($i = 1; $i <= $maxLevel; $i++)
...
0
votes
3answers
198 views
PHP trying to store numbers in for loop into array
Let's say I have this code:
<?php
$aLevel[] = 98;
function experience($L) {
$a=0;
for($x=1; $x<$L; $x++) {
$a += floor($x+300*pow(2, ($x/7)));
$aLevel[$x-1] = $a; // we minus one ...
1
vote
3answers
238 views
Division with really big numbers
I was just wondering what different strategies there are for division when dealing with big numbers. By big numbers, I mean ~50 digit numbers .
e.g.
9237639100273856744937827364095876289200667937278 ...
2
votes
1answer
456 views
C/C++ Large number calculation
I'm trying to compute the following number in a C program :
result = (3 * pow(2,500000000) - 2 ) % 1000000000
The power of 2 is way to large to be handled properly => I'm under the impression I ...
5
votes
5answers
196 views
How a sequence of numbers can be converted to a single number?
I want to convert a sequence of numbers to a single number which will retain individual values as well as their position. e.g. the following sequence is provided-
1,6,7,8,9,45,67
here,take for ...
-8
votes
3answers
117 views
No Of Divisors of a number having atleast one common digit with the given number [closed]
As Question says.I need to count the number of Divisors of a given number say x. But the constraint is that the divisor must have atleast one digit common with given number x.
Say for 10 answer would ...
2
votes
3answers
99 views
Get a less specific number - from another number
Right, sorry I can't think of the correct words to google this. So I'll have to ask.
I've got a long (System.currentTimeMillis())
Lets say
3453646345345345
I want to remove the last six (or other ...
-2
votes
1answer
235 views
Why am I getting $NaN on this page?
On this page: http://firstglobaltitle.com/net_sheet_calculator.php I keep getting $NaN instead of a number. (Code starts on line 155.) How can I get a number output instead of $NaN.
function ...
0
votes
2answers
1k views
Python math is wrong [duplicate]
Possible Duplicate:
Python rounding error with float numbers
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type ...
0
votes
3answers
63 views
Calculating two numbers
Sorry for asking this question, I didn't pay attention in school...
Say I have two numbers: 3 and 7
I'd like to create a bar that shows the percentage of both numbers (out of 100%)
in other words, ...
2
votes
4answers
190 views
Scheduling: Partition a set of integers into K subsets
I'm working on a task scheduler and faced the following problem (distribution of tasks among processors):
There is a set of N integers. How to partition them into K disjoint subsets that have small ...
1
vote
1answer
96 views
Server crash when using parseInt in dart?
Not sure what I am doing wrong here. I have a tiny program setup to parse requests on my localhost. My client has this:
var local_num = null; // init to null
// my server is running on localhost at ...
1
vote
0answers
102 views
Challenging C# problems [closed]
where can I find the type of Facebook puzzles to solve using any programming languages like C# for example?
The kinds including math and numbers are my most concern
Thanks




