To calculate the resultant resistance of a circuit can you use all possible paths and assume they're parallel?
Say I have a circuit like this:

And I want to determine the resistance between x and y. Is it valid to write down every possible path electricity could take (obviously without going back to the same node twice), and assume they're parallel?
Example of SOME possible paths here would be:
- R/2 + R/2
- R/2 + R/2 + 3R/2
- 3R/2 + R/2 + R/2
But this is NOT a possible path:
- R/2 + R/2 + 3R/2 + R/2 + R/2 corresponds to X -> a -> b -> X -> a -> Y
Is this a valid way of solving problems like this?
Also yeah I know how to solve this by saying a&b are at the same potential and going from there, I'm just curious if this more general way of solving is valid?