Google and Oracle’s $9 billion “copyright case of the decade” could be headed for the Supreme Court Computer Science |
- Google and Oracle’s $9 billion “copyright case of the decade” could be headed for the Supreme Court
- What does E[...|...;...] mean in a mathematical formula? E.g. the state value function in Markov decision processes
- How can I excel in my comp sci degree when I’m not good at math?
- Math MS to CS PhD: Suggestions
- Highly confident that this is NP-hard, and I try to show it with generalization
- Complexity of a code
- Intuition and generalization for NP-completeness of deciding correct mapping of a Sudoku puzzle??
Google and Oracle’s $9 billion “copyright case of the decade” could be headed for the Supreme Court Posted: 25 May 2019 03:50 PM PDT |
Posted: 25 May 2019 11:23 AM PDT I'm trying to implement this paper about Markov decision processes but am struggling with some of the formulas, for example the state value function definition at the end of the second page. I can understand everything in it except the double struck E[...] notation at the start, I've never seen it before, can't derive what it means from the formula and don't know what to look up. The only thing I can think of is set builder notation considering the 'where pipe "|"' and the big double struck letter but that wouldn't make any sense here. Could anyone help me out with this? Thanks a lot for reading! [link] [comments] |
How can I excel in my comp sci degree when I’m not good at math? Posted: 26 May 2019 12:43 AM PDT Hi everyone, I switched my major from biology to CompSci this last year and I'm finally taking a course where math is necessary. I still have to take the first year Calculus's and discrete maths. In the class we are learning Java and I feel so discouraged because I can't even compile a simple code using factorials. Honestly speaking, this class is kicking my ass. Can someone who was terrible at math and still got through their degree give me some advice on how I can get through the math part without dropping out??? Any advice is appreciated, I'm really lost out here. Thank you! [link] [comments] |
Math MS to CS PhD: Suggestions Posted: 25 May 2019 11:09 PM PDT Hi, After completing my MS in Math, I'm looking to apply to CS PhD programs, primarily as I'm interested in quantum computation and that I want to work on inter-disciplinary projects. Would anyone have any recommendations for CS programs that may be interested in accepting a student with a math/physics background. Any recommendations for schools someone like me could target. [link] [comments] |
Highly confident that this is NP-hard, and I try to show it with generalization Posted: 25 May 2019 06:56 PM PDT My motivations is to show that given some X problem such n^2 x n^2 Sudoku Puzzle. There is a valid subset of poly-time algorithms that can generate their n^2 x n^2 solutions in a constrained environment. Figuring out how to generate their solutions in poly-time in constraint I believe to be NP-hard and I intend to make a generalization to show just that. To prove I created an algorithm. To test for n^2 x n^2 try it yourself by changing the numbering to a valid output. (eg. 12 x 12 is a 4 x 3) I created a constraint environment it shifts the elements to generate n! subsets of n^2 x n^2 Decision Problem I believe is NP-hard Deciding Shift of Elements or DSE Suppose, I want to create another constraint poly-time semi-solver that takes in a n x n box so that it can recover the remaining puzzle in poly-time. The decision problem we must face when coding a Semi-Solver Algorithm.... Is DSE it's solved when we brute-froce a correct solution to a random n^2 x n^2 Sudoku. We take that mapping into a constraint to permute n! solutions to a subset of Sudoku. (Refer to algorithm link to clarify confusion) Now, for intuitive concept. Let's take a look at this pseudo-code Deciding Problem for General Sudoku is NP-complete Under the knowledge of this fact It is safe to say that any variation and generalization of the Decision Problem of Sudoku is NP-hard. Therefore, I am generalizing that finding a poly-time semi-solver for any n^2 x n^2 puzzle is NP-hard, because it is akin to the Decision Problem of Sudoku. Heck, I can make a game that didn't use numbers but just shapes and it still would be NP-complete. [link] [comments] |
Posted: 25 May 2019 06:32 AM PDT If I have a code that goes once to every cell of an array and repeat doing it "the highest value in the array" times, is the complexity of the code is O(n)? [link] [comments] |
Intuition and generalization for NP-completeness of deciding correct mapping of a Sudoku puzzle?? Posted: 25 May 2019 02:42 PM PDT DefinitionsSemi-Solver - Suppose we have an algorithm that solves in poly-time for subsets of n^2 x n^2 Sudoku if and only if a n x n box is mapped out into a correct solution. Shifting Elements- Suppose, we use a backtracking solver for any random n^2 x n^2 puzzle. After the solution is recovered, the computer analyzes the ordering of the elements (numbers) and we hard-code that same mapping so that it can create a new n! set of valid solutions. DSE-Decision problem of correct Shifting of Elements to recover solutions efficiently.
Decision Problem- When given any puzzle of n^2 x n^2 size with completing the n x n box, what is the correct Shifting elements we should use to efficiently recover the remaining solution? Suppose, we take the Sudoku problem and see if it can be reduced into Deciding Shifting Elements for arbitrary Sudoku Puzzles. For illustration, suppose I fill in the bottom-left box correctly. Now, to show that finding the correct DSE for any puzzle is in NP. A non-deterministic machine finds at least one possible correct permute-shifting of the n x n box that yields a valid grid. After finding at least 1 DSE (by backtracking or NTM) I can now solve subset puzzles more efficiently. It is now possible to efficiently solve these puzzles on a Deterministic machine. The deterministic Machine can now poly-time solve the n! subset. Recap for Clearer Intuition
The Another Solution Problem (ASP) of a problem Sudoku is the following problem: for a given instance of a n^2 x n^2 puzzle of Sudoku and a DSE s to it, find another DSE to Sudoku other than s. Proving that hard-coding any of the sub-set cyclic languages of valid n^2 x n^2 latin sqaures. Can generate valid latin squares in poly-time on a deterministic machine. And poly-time solve the rest of a puzzle. Thinking about it all valid general n^2 x n^2 grids are trivially following a poly-time mappable cyclic/shift language. Those latin squares can be generated in poly-time. DSE is probably just as hard as ASP SAT has been proven to be ASP-complete in a poly-time reduction. SAT <p ASP DSE is in ASP So DSE for general n^2 x n^2 Sudoku must be hard. So, finding a poly-time algorithm that can decide on its own for which DSE isn't likely going to work. http://www-imai.is.s.u-tokyo.ac.jp/~yato/data2/SIGAL87-2.pdf [link] [comments] |
You are subscribed to email updates from Computer Science: Theory and Application. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment