I attempted to resolve my issue by using the following code snippet. Although the parent controller displayed the correct value, the page did not reflect the change. I even tried using $scope.apply(), but the value remained unchanged.
angular.extend(this, $controller('parentCtrl', {$scope: $scope}));
$scope.childValue = $scope.parentValue;