Click here to Skip to main content
15,905,229 members
Everything / Computational theory

Computational theory

computational-theory

Great Reads

by Simeon Sheye
Beyond basic unit tests, how do you choose your tests and when are you done?
by PengHeProfessor
A high performance monte carlo simulation framework for financial derivative pricing

Latest Articles

by PengHeProfessor
A high performance monte carlo simulation framework for financial derivative pricing
by Simeon Sheye
Beyond basic unit tests, how do you choose your tests and when are you done?

All Articles

Sort by Score

Computational theory 

21 Jan 2013 by Simeon Sheye
Beyond basic unit tests, how do you choose your tests and when are you done?
19 Jan 2012 by OriginalGriff
A very simple google lead straight to Wiki: http://en.wikipedia.org/wiki/Analysis_of_algorithms[^] which contains all of the info you need.In future, please try to do at least basic research yourself, and not waste our time and yours.
19 Jan 2012 by Manfred Rudolf Bihy
You really want to read this Wikipedia article: Computational complexity theory[^].The meaning of input size depends on the concrete algorithm that is being analysed.For the definition of "bestcase,worsecase,averagecase" please see the referenced article.Short example:Appending a...
6 Jun 2021 by OriginalGriff
Compiling does not mean your code is right! :laugh: Think of the development process as writing an email: compiling successfully means that you wrote the email in the right language - English, rather than German for example - not that the email...
4 Feb 2014 by missak boyajian
This is the solution in the book Introduction to Theory of computation by Sisper to prove that regural TM is undecidable.PROOF We let R be a TM that decides REGULARTM and construct TM S todecide ATM. Then S works in the following manner.S = “On input (M,W), where M is a TM and w is a...
3 Jun 2014 by Buddhi Chaturanga
My question is How to draw simple 3D geometry such as Sphere without using DirectX,OpenGL API or GPU Computational language such as Nvidia CUDA.I want to produce 3D geometry library using visual C/C++.I know DirectX is the simplest and efficient way,but I want to understand how to access...
2 Sep 2014 by PengHeProfessor
A high performance monte carlo simulation framework for financial derivative pricing
19 Jan 2012 by ALIWAZ
1. How does one calculate the run time complexity of an algorithm? ()lease explain with a simple example.2. What is meaning of size of input in algorithm?3. What is bestcase,worsecase,averagecase of an algorithm?4. What is purpose of big-o notation?Thanks in advance!
6 Jun 2021 by mahmoud abdella 2021
This is the code # show table elements import xlrd import numpy as np arr=[] z=np.zeros((11, 8)) workbook = xlrd.open_workbook('t.xlsx') for s in workbook.sheets(): for r in range(1,s.nrows): for c in range(1,s.ncols): ...