Have propositional calculi with independence-related features been named and studied? Are they trivial as logical systems? Are there any interesting properties that they either gain or lose relative to ordinary propositional calculi?
Independence-friendly logic as described here introduces a new kind of stanza in an expression headed by a quantifier, a set of definitely-unused variables. It's also described in this question and its answer.
The Wikipedia article has a compact notation for the similar-but-distinct slash logic, reproduced and explained below. I think independence-friendly logic can be implemented on top of slash logic by adding implicit slashes to prevent a player from being able to see their own previous moves (in a certain sense).
$$ \exists w / \{ x_1, x_2, \cdots, x_n \} \mathop. \varphi \;\; \text{is well-formed if and only if none of $\{x_1, x_2, \cdots x_n \}$ appear free in $\varphi$} $$
There's a nice duality between quantifiers, which introduce variables into the current scope and $/$, which removes them from the current scope. The syntax can also be extended to allow connectives to remove variables which name individuals (e.g. $\varphi \; (\land / x) \; \psi$).
It seems only natural to try to extend this to propositional calculus by constraining things that can appear in both subexpressions of a connective. Here's a first stab at doing it, with upper and lower bounds represented by $\land_V$ for lower bounds and $\land^V$ for upper bounds. Because propsitional calculus does not normally have quantifiers, I'm changing the syntax and well-formedness conditions a bit so that connectives can bear upper or lower bounds on which variables can exist in their subexpressions.
$$ \varphi \land_{\{x_1, x_2, \cdots x_n \}} \psi \;\; \text{is well-formed if and only if $\{x_1, \cdots, x_n\} \subset \text{FV}(\varphi) \cap \text{FV}(\psi)$} $$
$$ \varphi \land^{\{x_1, x_2, \cdots x_n\}} \psi \;\; \text{is well-formed if and only if $\text{FV}(\varphi) \cap \text{FV}(\psi) \subset \{x_1, \cdots, x_n\} $} $$
In particular, this makes it easy to express things like the side conditions this question directly in the syntax.
$$ F \lor^{\emptyset} G \;\;\text{if and only if}\;\; \text{$F$ or $G$} \;\;\; \text{where $F$ and $G$ are well-formed formulas}$$
Have such systems been studied?