I checked some of the literature and couldn't find any reference to this. I assume you mean pagerank and Google, right?
Maybe we can work out some possibilities ....
Let's call our pages like so:
A: valued, known page, links to B, F
B: has robots=noindex,follow, links to C, D, E
F: links to G, H, I
C,D,E,G,H,I: normal pages
In general, for pagerank: Value passed per link is dampening * 1/(number links) (very simplified)
- Each link on a page gets identical value passed
- The value passed through those links is reduced by the number of links on a page
- Each level of linkage reduces the value passed by the dampening factor (eg for A -> F -> G the link from F to G passes less value than the link from A to F)
Let's take a quick look at the possibilities:
#1. B transparently passes the full value to C,D,E
#2. B keeps value (but is filtered), passes the dampened value to C,D,E
#3. B does not take value, does not pass value (treated like a blocked URL in the robots.txt)
#4: B is ignored, the links on B are treated like links on A.
Assuming the people at Google accept and use "noindex,follow", we can rule #3 out. This should be easy to test though (anyone?).
Let's take a look at #1: It would mean that A passes d*1/2 value to split over the 3 pages C,D,E. The link out of A cannot be treated as 3 links (it would "penalize" the other legitimate link out of A), this means:
F: gets d*1/2
C,D,E each get d*1/2 * 1/3 = d*1/6
G,H,I each get (d*1/2) * d*1/3 = (d^2) * 1/6
It would require that Google's link-tables accept more than one end-point for a link; the link would be A -> (C,D,E). I'm just guessing, but I doubt they would have a provision for that. For d<1, the value passed to C,D,E would be higher than the value passed to G,H,I.
Looking at #2: the value passed would be:
F: gets d*1/2
G,H,I each get (d*1/2) * d*1/3 = (d^2) * 1/6
B: gets d*1/2 (but is not shown)
C,D,E: each get (d*1/2) * d*1/3 = (d^2) * 1/6 (same as G,H,I)
With d < 1 (for dampening) this would mean the value passed in situation #2 to C,D,E would be lower than the value passed in situation #1.
#4 seems strange, but possible. The value passed would be:
F: gets d*1/4
C,D,E: each get d*1/4
G,H,I each get (d*1/4) * d*1/3 = (d^2) * 1/12
The value passed to C,D,E would be much higher than the value passed to G,H,I.
The value passed to G,H,I would be lower than in situations #1 and #2. These links would be "penalized" in favor of C,D,E. Taking it to the web, if A, B, F were separate domains, B could penalize the links on F by adding robots=noindex. That wouldn't make much sense (or would it?).
#1 would require a strange format for the link tables, which I doubt is in place. #3 seems improbable (but I haven't seen any tests on it). #4 allows pages to penalize others that are on a shared parent (imagine if B had 200 links ...), which seems improbable as well. To me, that just leaves #2.
What did I miss? It's getting late, I'm sure I oversaw something

.
John
Edited by JohnMu, 27 July 2007 - 05:19 PM.