I have a grid where some paths are removed.
where the following path is admissible,
but this path
is not.
How can I go about finding how many admissible paths are there on the following 2 grids (separately)
grid 1:
I am not sure how to go about this, as it's the first I've seen of this type.
grid 2:





This answer fleshes out a bit the suggestion made by Angina Seng in a comment.
Use coordinates so that the bottom left vertex is $(0,0)$ and the top right is $(6,6)$.
In Grid 2, the paths that avoid the center square are precisely those that avoid the vertex $(3,3)$. So you can simply subtract the number of paths that pass through $(3,3)$ from the total number of paths: $$ \binom{12}{6}-\binom{6}{3}\binom{6}{3}. $$
For Grid 1, a path uses the edge joining $(2,1)$ to $(2,2)$ if and only if it passes through both of these vertices. The number of such paths is $\binom{3}{2}\binom{1}{1}\binom{8}{4}$. There are similar expressions for the number of paths using each of the other three missing edges. Subtracting all four resulting expressions from the total number of paths is over subtracting, because there are paths that pass through two of the disallowed edges. So add back the number of paths using two of the disallowed edges. There are similar product-of-binomial expressions for the numbers of such paths. No path uses three or more of the disallowed edges, so no additional adjustments need to be made.