You can combine the best of both worlds: symbolic tensors and vectors on one hand, and explicit vectors on the other. Explicit vectors are necessary in most vector algebra operations, unless you want to rely heavily on UpValues defined for all those operations and all the symbols you're using. It's cleaner to let Mathematica's matrix algebra take over whenever symbolic simplifications don't get anywhere.
So here is what I'd suggest:
First keep the $Assumptions that you defined, in order for TensorExpand to give simplifications whenever possible.
Then I define just two functions that can take care of all the rest: tensorExpand (with lower case spelling) is an extension of TensorExpand that post-processes the result by temporarily replacing x, y, and z, by their canonical unit vector counterparts.
This allows for things like Cross and Dot to work without any UpSet definitions. When that's complete, you have a simplified expression that contains 3D vectors, matrices and potentially higher rank tensors. Whatever those may be, I can always convert each of them to SparseArrays and extract their ArrayRules. From those, it's easy to read off how it can be rewritten as a linear combination of tensor products of the basis vectors. This is done in the function toSymbols.
Clear[x, y, z];
$Assumptions = (x | y | z) ∈ Vectors[3];
tensorExpand[expr_] :=
Simplify[TensorExpand[expr] /.
Thread[{x, y, z} -> IdentityMatrix[3]]] /.
l_List :> SparseArray[l] /. s_SparseArray :> toSymbols[ArrayRules@s]
toSymbols[ruleList_] :=
Total[ruleList /.
HoldPattern[Rule[a_, b_]] :>
Times[Apply[TensorProduct, a /. Thread[{1, 2, 3} -> {x, y, z}]],
b]]
Here are some tests:
tensorExpand[TensorProduct[x, y]]
(* ==> x⊗y *)
tensorExpand[TensorProduct[x, y].(2 y + z)]
(* ==> 2 x *)
tensorExpand[Cross[x, y]]
(* ==> z *)
tensorExpand[Cross[x, y].(2 y + z)]
(* ==> 1 *)
tensorExpand[Cross[x, {a, b, c}]]
(* ==> -c y + b z *)
As you can see, the use of component vectors in the intermediate calculations is completely invisible in the end results. You always get back an expression that is written in terms of the symbolic basis vectors, so you can do further manipulations on them if needed.
Edit adding LeviCivitaTensor etc.
The handling of LeviCivitaTensor requested in the question also works without any problems:
ϵ = LeviCivitaTensor[3];
tensorExpand[ϵ]
(*
==> x⊗y⊗z - x⊗z⊗y - y⊗x⊗z + y⊗z⊗x + z⊗x⊗y - z⊗y⊗x
*)
tensorExpand[ϵ.z]
(* ==> x⊗y - y⊗x *)
By the way, this tells me that you had a sign error in your version of T = ϵ.z.
When mixing symbolic vectors and explicit arrays, one has to watch out for cases where the symbols get pulled into the array when you don't use the Dot multiplication. But I don't think this issue arises in your question.
zwhen typingCross[x,y], which I assume is not your main goal. Mathematica doesn't have great support for symbolic tensor operations so there's no simple way to just "define" this and expect many different operations to take it into account. To make the question answerable, can you explain specifically what operations are you trying to perform that need to take handedness into account? I expect solutions will be specific to different operations. – Szabolcs Feb 13 '15 at 17:56{1,2,3}instead of the symbolic formx+2y+3z. This would be the standard and robust way that also gives better performance. If you like, you can actually definex={1,0,0}, etc. to be able to input vectors asx+2y+3z. – Szabolcs Feb 13 '15 at 18:24