Recent content by alyafey22
-
MHB Is AlphaZero a Scientific Breakthrough in AI?
I am working on deep learning as well but as part of the Masters program. For those interested to see some battles between stockfish and AlphaZero watch this with some commentary lFXJWPhDsSY- alyafey22
- Post #6
- Forum: Programming and Computer Science
-
MHB What is the Kaggle Data Science Bowl 2017 competition about?
It is a computer vision competition . The question is, given an image how many sea lions are there ? Actually it is more complicated since it asks for the type as well.- alyafey22
- Post #6
- Forum: Computing and Technology
-
MHB What is the Kaggle Data Science Bowl 2017 competition about?
I am currently participating in a competition to recognize sea lions. The competition is fierce to be honest with many previous winners but it is always a good experience that you learn from. Also the Cash prize is a good incentive.- alyafey22
- Post #3
- Forum: Computing and Technology
-
MHB 10.5.55 Does the following series converge or diverge?
$$(2n)! = 1 \times 2 \times \cdots (2n-1)(2n) \leq 2 \times 2 \cdots (2n) (2n) = 4^n(n!)^2$$ Hence $$\sum_{n=1}^\infty \frac{10^n (n!)^2}{(2n)!} \geq \sum_{n=1}^\infty \left( \frac{5}{2}\right)^n$$ -
MHB 206.10.3.17 Evaluate the following geometric sum
The right hand side should be as a function of $n$. -
MHB How to Evaluate the Integral of z(z+1)cosh(1/z) Over a Unit Circle?
Please write your initial attempt.- alyafey22
- Post #2
- Forum: Topology and Analysis
-
Python Create a binary search tree in python with the support of variables
What is unclear about the pseudocode ?- alyafey22
- Post #12
- Forum: Programming and Computer Science
-
Python Create a binary search tree in python with the support of variables
I think it should work but u have an extra else statement that has no effect since the value can be either ><=.- alyafey22
- Post #10
- Forum: Programming and Computer Science
-
Python Create a binary search tree in python with the support of variables
Before you search in the here._left and here._right you have to make sure they are not None. If they are just put here._left = Node or here._right = Node , else search the subtree.- alyafey22
- Post #8
- Forum: Programming and Computer Science
-
MHB Definite Integration: $$\int^{\frac{\sqrt{5}+1}{2}}_{1}$$
What methods are expected to use ? what have you tried so far ? -
Python Create a binary search tree in python with the support of variables
You are close. what about the case when you have a non-empty tree and you want to insert a non-existent variable? The node of that variable must be inserted as a leaf node but you don't have a base case for that.- alyafey22
- Post #6
- Forum: Programming and Computer Science
-
Python Create a binary search tree in python with the support of variables
In your implementation of the insert method, you are returning a node. Shouldn't you update the tree ?- alyafey22
- Post #4
- Forum: Programming and Computer Science
-
Python Create a binary search tree in python with the support of variables
What exactly is the problem you are facing ? Let is start with the insert method. Is it working correctly ?- alyafey22
- Post #2
- Forum: Programming and Computer Science
-
MHB What is the limit of $\frac{n^2}{2^n}$ as $n$ approaches infinity?
You can use the mathematical induction.