Suppose we have a relation R(A,B,C,D,E) with candidate keys {A,B} , {C,D} and let E be a non prime attribute.
If there is a dependency C->E then it is partial dependency as E depends on a part of candidate key {C,D}
Is dependency BC->E partial?
Suppose we have a relation R(A,B,C,D,E) with candidate keys {A,B} , {C,D} and let E be a non prime attribute.
If there is a dependency C->E then it is partial dependency as E depends on a part of candidate key {C,D}
Is dependency BC->E partial?
If there is a dependency C->E then it is partial dependency as E depends on a part of candidate key {C,D}
That "as" is unsound. It doesn't appeal to the definition of "partial functional dependency". We need to memorize & apply definitions exactly. (What published academic reference(s) are you using?)
FD X → Y is partial when it holds and some proper/smaller subset of X also determines Y. If all X attributes are in the relation then FD X → Y is partial when some proper/smaller subset of X also determines Y. (Because Armstrong's axioms say that the subset FD implies the X FD.)
Here FD C → E is partial when {} → E. (Ie when all rows have the same E value.) Armstrong's axioms say certain other FDs also hold since AB & CD are keys. The combined FDs that hold can't make E prime. But it turns out that we still can't know whether {} → E holds. So if C → E then we can't know whether C partially determines E.
Is dependency BC->E partial?
Here FD BC → E is partial when some proper/smaller subset of BC determines E. Ie when B → E, C → E or {} → E. It turns out that we can't know whether any of those four FDs hold. So we can't know whether BC → E, let alone whether it is partial. Although if B → E or C → E then FD BC → E is partial. (Because B & C are proper/smaller subsets of BC.)
(Normally we know a cover for the FDs that hold, which determines all FDs that hold, which determines the CKs and the non-prime attributes. Then because we know all the FDs that hold, we can determine which ones are partial. CKs are irrelevant to whether a FD is partial.)