Here comes the post I promised yesterday.
This formula works with statistics. That means it doesn't matter if you hit 1% of time with stength 100 or 100% of time with 1 damage(with little refinement you can make it matter). I will not give you a complete formula, but rather only pieces that hold together. I have also counted with tactical and strategical elements(different magnitude of weapons depending on range, movement, strategy chosen), effectivity of separate components and component's resource cost but then I decided not to include them here(I got to a point where it would be easyer to ask programmers for source code

). If someone is interested I can post it too(but the post will be thrice this long). If you find a mistake, please check if it is a mistake of principle or just hitting the wrong key(I wrote this late at night) before you accuse me of something wrong.
Abbreviations:
!: "faktorial"; I don't know the right word here. 5! means 5+4+3+2+1, 1! is 1, 10! is 10+9+8...+2+1. (3!)! is (3)+(2)+(1). Just substitute the number with the Last one minus 1.
AAW: "All active weapons" Sum of all weapons that can fire this turn. Used to calculate how much you actually hit after substracting efficiency.
ATH: "Attacker's to hit" Sum of all attacker's positive attack modifiers (experience, weapons) esxcept CAM.
CAM: "Constant attack mofifier" The bonus(penalty) you recieve from modifiers that don't change(ship size, ?).
CDM: "Constant defense modifier" The bonus(penalty) you recieve from modifiers that don't change(ship size, event predictor).
DD: DP*HE; "Damage dealt" HE-CDM has can be 0-1.
DP: "Damage potential" Sum of all weapons' damage. Do not apply anything except bonuses for mounts.
DRRA: "Damage resistance of remaining armor" Sum of all. The difference between DRRA and DRRS can be important if you implement weapons that bypass certain defenses.
DRRC: "Damage resistance of remaining components" Sum of all components' damage resistance. Do not include any armor.
DRRS: "Damage resistance of remaining shields" Sum of all. The difference between DRRA and DRRS can be important if you implement weapons that bypass certain defenses.
DTD: "Defenders to defend" Sum of all defenders' positive defense modifiers (experience, components) except CDM.
E: RSDR/OSDR; "Effectivity" This represents the proportion of your functionality.
ED: DRRC+DRRA+DRRS; "Effective defense"
HE: ((TH sqared with AAW)!)/(100 sqared with AAW!))*AWW +CAM -CDM + E; "Hit efficiency" This value can be 0-1. First you determine pure chances of attack. Then you add all constant modifiers and how damaged you are. This is the value that modifies the damage you deal.
OSDR: "Original ship damage resistance."
RESULT: ED-DD
RSDR: "Remaining ship damage resistance" DRRA+DRRC+DRRS
TH: ATH-DTD; "To hit"
This is a core from which you can derive anything about effectivity about whole ships. Now if you search for a break-even point just give wanted values to each side and give there an equation(of course leave some values as unknown). One equation is for 1 situation. For optimization purposes it's best to make a clumsy design that includes the type of components you want to include. Then Count higest and lowest numbers and find a golden heart.
Just a rough example(If this works well): A hi-end battleship +20 kt comuter core +50 kt engines(100kt) +240 kt of shields(375 shields) + 10 multiplex +10 senzors(65%) +10 ECM(60%) +30 Stealth(100 armor,15%) +50 Scattering(150 armor,15%) +20 kt Quantum +20 Sail +40 PD +300 Energy(90,135dmg/1round). It has overall +65% to attack and +90 to defense. It's components' damage reduction is 770, 2250 are shields, 250 armor. It can cause maximum damage of 5*135=675 kTs. It's overall defense is 3270 pionts. If this value drops to 770 the ship is beginning to take serious damage. 3270-770=2500/675=3.7 This means that it can take 3 full hits until it takes damage to internal systems. Let's optimize this ship. We just want to switch combat parts. ECM, Senzors and Multiplex are left on the ship. We have 800-420=380 space left. We want to have RESULT as high as possible. Now the effectivity of that weapon(on that range) is 3,75. Effectivity of shield is 10,375. That indicates Shields are much more efficient in this example. For simplicity let's assume HE is 0.2; TH=0.2(I know that this break a little bit this example, but it't O.K. for illustrating). DD=DP*0.2; ED=? Result "is bigger than" 0 (intead of zero I should have inserted the RESULT value of previous desigh, againg simplifing) DP*0.2 -ED "is bigger than" x; DP*0.2"is smaller than"x- ED; Maximum ED is 380(free space)-60(At least one weapon)/40 (space used by maximu shields, round down)*(value of each shield)=3000 Minimum is 0. Maximum DP is 380/60=6*135=810. Now we search a value that best fits these requrements. DP*0.2"is smaller than"3000; DP "is smaller than"15000 The best value that approaches this apparent no-sense is 810. This no-sense indicates also when it would be more effective to add weapons instead of armor. No surprise; the component effectivity values indicated that. Using these guidelines you can count any combination. Adding components with % is somewhat more complicated. You count the component effectivity and add the percent to overall ED or HE. This requires a bit math or an hour with Excel. If someone is willing to make that small program, you may know your answer to what universal combination is best.
WARD