If A determines B (A -> B) then saying that AB determines C (AB -> C) implies that A determines C (A -> C).
Saying A -> B means that there are no two records where the B columns have different values but the A columns have the same value.
Saying AB -> C means that there are no two records where the C columns have different values but both the A and B columns have the same value. Although, because A -> B, we already know that if the A columns have the same value then the B columns also have the same value. Thus, we can say that, seeing that A -> B then AB -> C implies A -> C.
Thus, the FDs in R are:
- A -> B
- A -> C
For a relation to be in BCNF the following must hold:
- It must already be in 3NF
- There mustn't be non-trivial functional dependencies where the determinant is not a super key
As you already have a relation in 3NF, as you stated, we satisfy the 1st condition.
As in all of R's FDs the determinant is a super key (A is a super key), we satisfy the 2nd condition.
Thus, R is in BCNF.