Equirecursive types consider a recursive type to be equal to its unrolling and have no explicit term-level coercions to change a term's type from the former to the latter or vice versa. This equality makes deciding type equality and subtyping more difficult than the other approach-isorecursive types, in which the types are not equal, but isomorphic, witnessed by explicit term-level coercions. Previous work has built intuition, rules, and polynomial-time decision procedures for equirecursive types for first-order type systems. Some work has been done for type systems with parametric polymorphism, but that work is incomplete (see below). This chapter will give an intuitive theory of equirecursive types for second-order type systems, sound and complete rules, and a decision procedure for subtyping.Another interesting feature of type systems turns out to be quite related to equirecursive types. Canning et al. [CCH + 89] introduced the idea of F-bounded polymorphism. In this form of polymorphism a type bound can mention the type being bounded. For example, it can require a type that has a method that returns an object of the type being bounded. This form of bound is useful for binary methods and in typing object encodings [Gle00]. Treating a type variable as being a subtype of its bound when that bound can refer to it is like treating a recursive type as being equal to its unrolling, and similar issues arise to formalising such type systems. This chapter will also treat F-bounded parameteric polymorphism, and give it an intuitive formalisation, sound and complete set of rules, and decision procedure for subtyping.Amadio and Cardelli [AC93] were the first to investigate the equirecursive approach. They proposed the tree interpretation of recursive types, which is based on the idea of repeatedly unrolling recursive types into possibly-infinite trees. Two types are equal if their corresponding trees are the same; similarly, subtyping can be defined on trees and lifted to types. Amadio and Cardelli made these ideas precise, defined a set of rules for type equality and subtyping that are sound and complete, and provided an exponential-time decision procedure for equality and subtyping. Kozen et al. [KPS95] reduced this exponential time to quadratic time, by defining a notion of tree automata that generate trees just as types do and a construction from two tree automata that decides equality and subtyping. Both Amadio and Cardelli and Kozen et al. worked with firstorder type systems. Colazzo and Ghelli [CG99] investigated a second-order type