Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
21answers
1k views

How do you apply Theoretical Computer Science?

Why is theory useful? Do you ever use it in your day-to-day coding? For example, we learned about the halting problem, Turing machines, reductions, etc... a lot of classmates are saying it's abstract ...
6
votes
2answers
564 views

Important topics in the theory of computation

During my studies at university I had to learn a lot about the theory of computation. I studied the subject for three terms. I had a hard time and I have to admit that I forgot a lot. I am wondering ...
6
votes
4answers
487 views

Python: how so fast?

The period of the Mersenne Twister used in the module random is (I am told) 2**19937 - 1. As a binary number, that is 19937 '1's in a row (if I'm not mistaken). Python converts it to decimal pretty ...
5
votes
3answers
216 views

Kernel methods for large scale dataset

Kernel-based classifier usually requires O(n^3) training time because of the inner-product computation between two instances. To speed up the training, inner-product values can be pre-computed and ...
3
votes
1answer
80 views

Ruby puts not outputting in real time

I've started some problems on Project Euler. One of the questions: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? I have some code ...
2
votes
1answer
48 views

bash deletes my file while looping “~$ ./program > file.dat” (gnuplot)

I'm doing some script on bash to plot data with gnuplot. But it doesn't work. I have a program which throws data to the command line. I collect that data on a file and then I loop this process over ...
2
votes
2answers
380 views

Calculating big float number fast like 0.4 ^ 100000000 ,, any ideas?

Ehm ... I got a problem I've a certain calculation that result is over 10^-308 (the biggest value in double .net ) any way I solved this problem through a library called BIGFLOAT ...
2
votes
2answers
337 views

Efficient polynomial evaluation with Horner's Algorithm

I have the equation y = 3(x+1)^2 + 5(x+1)^4. Using Horner's scheme I could evaluate this polynomial in this form, y = 8+x(26+x(33+x(20+5x))), thus requiring 8 arithmetic operations. I could also ...
2
votes
3answers
407 views

Java: Data structure for caching computation result?

I have an expensive computation, the result of which I'd like to cache. Is there some way to make a map with two keys? I'm thinking of something like Map<(Thing1, Thing2), Integer>. Then I ...
1
vote
5answers
87 views

How to fix computation errors?

I'm trying to write a program that reads 2 numbers from the user and divides them. Here is the code I have so far: import java.util.Scanner; public class divideByZero { public static int ...
1
vote
3answers
77 views

how to compute a bitmap?

I am looking for a way to get all combination of a list item. what i thinking is to have a two dimention array, similary to a bit map e.g bit[][] mybitmap; for example if i have 4 item in my list "A, ...
1
vote
3answers
895 views

A packing algorithm … kind of

Given an array of items, each of which has a value and cost, what's the best algorithm determine the items required to reach a minimum value at the minimum cost? eg: Item: Value -> Cost ...
0
votes
2answers
44 views

why is addition operation faster than multiplication operation?

Could someone please explain why is addition operation faster than multiplication operation ? for example if we need to multiply 25 by 50 will the compiler transform it to a for loop of additions ?
0
votes
3answers
26 views

How to Append Text to DOM on click before expensive computational task

I have a function that performs a very expensive computational task on a click event. I'd like to append some text to the DOM right before this function gets called. Something like this: ...
0
votes
0answers
31 views

Push Down Automata

designing a pushdown automata for the language a^n b c^n+2, n>0 I have been asked to implement the automata for the above language .. please help? I tried popping a 2 (c)s everytime I push an (a) on ...
0
votes
2answers
63 views

Odd result of a floating point computation in java [closed]

Possible Duplicate: Java floating point math - (conversion for feet/meters) Java floating point arithmetic I am running into the following problem in java. This computation (0.196f * ...
0
votes
1answer
44 views

Java deployment to a cloud for fast computation

I have an application written in Java that performs some straightforward but time consuming calculations analysing some texts, printing results to the terminal. I want to speed up the process by ...
0
votes
2answers
196 views

Exponentiation by Squaring (Project Euler 99) Tips on my solution

Here is the problem I am talking about http://projecteuler.net/index.php?section=problems&id=99 My code will compile and run correctly. I am guessing the computation is where it is messing up. It ...
0
votes
2answers
146 views

Determine the points of intersection between N spheres

Just wanted to know what is the best approach (in terms of speed and accuracy) to determine the points of intersection on N spheres (it was asked for two spheres here); wanted to know what would be ...
0
votes
4answers
163 views

Perfect Power detection in linear time

I'm trying to write a C program which, given a positive integer n (> 1) detect whether exists numbers x and r so that n = x^r This is what I did so far: while (c>=d) { double y = pow(sum, ...
0
votes
1answer
106 views

Turing Machine with non trivial states and transitions

Please give me some idea as to how to go about this Draw a Turing machine (using Sipser notation) having at least 4 nontrivial (i.e., nonrejecting) states and at least six nontrivial (i.e., not to ...
0
votes
0answers
163 views

show that if L is regular, so is L-{lamda}?

I was thinking for this question more than three hours but I couldn't figure it out? please, help me I have exam tomorrow... thanks in advance !!!
0
votes
1answer
90 views

Simple date computation in C#

do you happen to have a sample code on how to subtract day tomorrow or 2 days from today? And then I will multiply it by a number depending on its reserved value. I am figuring how to operate a hotel ...
0
votes
1answer
43 views

computing the bounding rectangle of planar geometry in 3D space

As an input, I receive some planar, triangulated geometry. Now, I need to compute the four coordinates of the corners of the bounding rectangle. Any Ideas?
0
votes
4answers
97 views

How does an environment (e.g. Ruby) handle massive integers?

My integers in Ruby (MRI) refuse to overflow. I've noticed the class change from fixnum to bignum but I'm wondering how this is modeled and what sort of process ruby uses to perform arithmetic on ...
0
votes
4answers
4k views

Which java-library computes the cumulative standard normal distribution function?

For a project I have a specification with formulas, I have to implement. In these formulas a cumulative standard normal distribution function exists, that takes a float and outputs a probability. The ...
-3
votes
1answer
39 views

Language classication (computation)

I need to determine if L:={<M>|HP<=L(M)} is in R, and if L is in RE. I think that Rice's theorem can help prove L is not in R but I don't think that L is in RE...